这是我在Mac上拥有的东西:
clang --version
Apple LLVM version 10.0.0 (clang-1000.10.44.4)
Target: x86_64-apple-darwin17.7.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
我的应用程序需要使用clang版本9进行编译,如何在Mac上安装它?
我去了LLVM official site,但在那里看不到Clang 9。
非常感谢您的帮助!
答案 0 :(得分:0)
我下载了Xcode 9.2
,然后下载了xcode-select -s /Applications/Xcode.app/Contents/Developer
,然后我的clang --version
显示了Apple LLVM version 9.0.0 (clang-900.0.39.2)
,这正是我想要的。
希望这可以帮助遇到相同或相似问题的其他人。