私は、ツールが実際にXcode.appのPKGにある最新のバージョン(に対して答えるんだけど、私はかなり確信してパス&出力がで返された場合ということだxcode-select -p
、gcc -v
とllvm-gcc -v/clang -v
している調和のとれた、彼らは同じである必要があり、すなわち
$ xcode-select -p
/Applications/Xcode.app/Contents/Developer
$ gcc -v
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 6.1.0 (clang-602.0.49) (based on LLVM 3.6.0svn)
Target: x86_64-apple-darwin14.3.0
Thread model: posix
$ llvm-gcc -v
Apple LLVM version 6.1.0 (clang-602.0.49) (based on LLVM 3.6.0svn)
Target: x86_64-apple-darwin14.3.0
Thread model: posix
$ clang -v
Apple LLVM version 6.1.0 (clang-602.0.49) (based on LLVM 3.6.0svn)
Target: x86_64-apple-darwin14.3.0
Thread model: posix
llvm-gccはclangへのリンクであり、
$ls -al /usr/bin/llvm-gcc
lrwxr-xr-x 1 root wheel 5 Oct 19 2014 /usr/bin/llvm-gcc -> clang
出力のでllvm-gcc -v
とは、clang -v
それがまたはあなたのためのケースであってもなくてもよいが、同一である必要があります(参照/programming//a/5708732/602581をいくつかの詳細)
xcode command line tools installed version
たが、多くの無関係なマッチを得ました。ところで、犬Gの答えはあなたのために働きましたか?