rvm install 1.9.3 --with-gcc=clang
(正如Can't install Ruby under Lion with RVM – GCC issues所建议的那样)不起作用,因为 Mac OS X 10.8.2 (Mountain Lion) 和 Xcode 4.5 都没有附带clang
.
是否可以使用 Ruby 编译llvm
?
根据Matthias Schmidt 的“如何使用 LLVM 和 rbenv 在 Mac OS X 上安装 Ruby 1.9.3”,Ruby 现在与 LLVM 完全兼容。
但是,我仍然得到:error: C compiler cannot create executables
更新:
实际上,我在clang
这里找到了/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
(感谢Node.js Installation Wiki)。我只是没有clang
在我的道路上。
那么,如果我添加clang
到我的路径中,就rvm install 1.9.3 --with-gcc=clang
足够了吗?