Changes between Version 11 and Version 12 of XcodeVersionInfo


Ignore:
Timestamp:
Dec 5, 2012, 4:03:49 PM (11 years ago)
Author:
raimue (Rainer Müller)
Comment:

Add information on how to generate a new entry

Legend:

Unmodified
Added
Removed
Modified
  • XcodeVersionInfo

    v11 v12  
    11== Xcode Version Information ==
    2 This is a place to record various bits of information pertaining to a release of Xcode (currently, just which gcc4 is found with which Xcode)
     2This is a place to record various bits of information pertaining to a release of Xcode, including the build number and versions of llvm-gcc and clang.
     3
     4=== Adding new entries ===
     5
     6First make sure the versions of your installed Xcode and Command Line Tools match each other! You can upgrade the Command Line Tools from the tab "Downloads" in the preferences window of Xcode.app.
     7
     8Then run the following command to generate a new entry and copy it directly to your clipboard for pasting it into this wiki page:
     9
     10{{{
     11#!sh
     12echo -e "=== $(xcodebuild -version |head -n1) ===\n * '''Xcode''': $(xcodebuild -version |tail -1)\n * '''llvm-gcc''': $(llvm-gcc --version |head -1)\n * '''clang''': $(clang --version |head -n1)" |tee /dev/tty |pbcopy
     13}}}
     14
    315
    416== Mac OS X 10.8 ==