ฉันตอบกับรุ่นล่าสุดขึ้น (ที่เครื่องมือที่เป็นจริงใน pkg Xcode.app แต่ผมค่อนข้างมั่นใจว่าถ้าเส้นทางและการส่งออกกลับโดย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 เป็นลิงค์ไปยังเสียงดังกราว
$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
แต่มีการจับคู่ที่ไม่เกี่ยวข้องจำนวนมาก Btw, คำตอบของ Dog G. เหมาะกับคุณหรือไม่?