web-dev-qa-db-ja.com

Xcodeが使用しているLLVMコンパイラのバージョンを確認するにはどうすればよいですか?

OS X10.8.2でXcode4.5.2を使用しています。 Xcodeが使用しているLLVMコンパイラのバージョンを知るにはどうすればよいですか?

18
4ae1e1

UIから:

  • ターゲットを選択します(デフォルトで選択される場合があります)
  • [ビルド設定]タブをクリックします
  • スクロールして「AppleLLVMコンパイラ:XCode生成」を表示します
  • X.XはLLVMのバージョンです

6
Victor Ronin

コマンドラインから:

07:40:35 andrew@iMac SalesIQ (siq-303)$ llvm-gcc -v
Using built-in specs.
Target: i686-Apple-darwin11
Configured with: /private/var/tmp/llvmgcc42/llvmgcc42-2336.11~67/src/configure --disable-checking --enable-werror --prefix=/Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2 --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-prefix=llvm- --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-Apple-darwin11 - enable-llvm=/private/var/tmp/llvmgcc42/llvmgcc42-2336.11~67/dst-llvmCore/Developer/usr/local --program-prefix=i686-Apple-darwin11- --Host=x86_64-Apple-darwin11 --target=i686-Apple-darwin11 --with-gxx-include-dir=/usr/include/c++/4.2.1
Thread model: posix
gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)
07:40:39 andrew@iMac SalesIQ (siq-303)$ 
26
Andrew

ビルド設定によって異なります。 Clangまたはllvm-gccを選択でき、iOSビルドはOSXとは異なるものを使用する場合があります。使用されたバージョンを正確に確認するには、ビルドログのコンパイル選択を展開して「Compile ViewController.m。」 「/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x …

または

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/llvm-gcc-4.2 -x…

コンパイラへのパスを選択し、ターミナルで以下を実行します。

8> /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang --version

Apple clang version 4.1 (tags/Apple/clang-421.11.66) (based on LLVM 3.1svn)…

または

9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/llvm-gcc-4.2 --version

i686-Apple-darwin10-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2410.2.00)…

Apple Clangのバージョン管理は、GCCのバージョン管理とオープンソースのLLVMの両方とは異なることに注意してください。

3
Flash Sheridan