Changes between Version 35 and Version 36 of XcodeVersionInfo


Ignore:
Timestamp:
Apr 24, 2013, 9:13:55 AM (11 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

update info-gathering script to hopefully handle all compilers of all relevant versions of Xcode

Legend:

Unmodified
Added
Removed
Modified
  • XcodeVersionInfo

    v35 v36  
    1010{{{
    1111#!sh
    12 echo -e "=== $(/usr/bin/xcodebuild -version |head -n1) ===\n * '''Xcode''': $(/usr/bin/xcodebuild -version |tail -1)\n * '''llvm-gcc''': $(/usr/bin/llvm-gcc --version |head -1)\n * '''clang''': $(/usr/bin/clang --version |head -n1)" |tee /dev/tty |pbcopy
     12echo -e "=== $(/usr/bin/xcodebuild -version |head -n1) ===\n * '''Xcode''': $(/usr/bin/xcodebuild -version |tail -1)\n$(test -x /usr/bin/gcc-3.3 && echo " * '''gcc-3.3''': $(/usr/bin/gcc-3.3 --version 2>/dev/null |head -1)\n")$(test -x /usr/bin/gcc-4.0 && echo " * '''gcc-4.0''': $(/usr/bin/gcc-4.0 --version 2>/dev/null |head -1)\n")$(test -x /usr/bin/gcc-4.2 && echo " * '''gcc-4.2''': $(/usr/bin/gcc-4.2 --version 2>/dev/null |head -1)\n")$((test -x /usr/bin/llvm-gcc-4.2 || test -x /Developer/usr/bin/llvm-gcc-4.2) && echo " * '''llvm-gcc''': $((/usr/bin/llvm-gcc --version 2>/dev/null || /Developer/usr/bin/llvm-gcc --version 2>/dev/null) |head -1)\n")$((test -x /usr/bin/clang || test -x /Developer/usr/bin/clang) && echo " * '''clang''': $((test -x /usr/bin/clang && /usr/bin/clang --version 2>&1 || /Developer/usr/bin/clang --version 2>&1) |head -1)")" |tee /dev/tty |pbcopy
    1313}}}
    1414