12

我刚刚在我的 Mac 上安装了 Rust 并rustc --version --verbose显示

rustc 1.0.0-nightly (91bdf23f5 2015-03-09) (built 2015-03-08)
binary: rustc
commit-hash: 91bdf23f504f79ed59617cde3dfebd3d5e39a476
commit-date: 2015-03-09
build-date: 2015-03-08
host: x86_64-apple-darwin
release: 1.0.0-nightly

我克隆了几个存储库(postgres-extensionerlang-rust-nif)并cargo build在它们两个上运行。两人都报错

error: could not exec the linker `cc`: No such file or directory (os error 2)
error: aborting due to previous error

此外,我无法"hello world"使用 rustc 编译简单的 Rust 文件打印。我只能通过传递 flags 来编译它们rustc -C linker=gcc hello_world.rs

clang --version显示

clang version 3.4.2  (http://llvm.org/git/llvm.git 5c6aa738fb3325ae499454877f1e2926d2368135)
Target: x86_64-apple-darwin12.2.1
Thread model: posix

gcc --version显示

gcc (Homebrew gcc49 4.9.2_1) 4.9.2
4

1 回答 1

7

看起来您已经通过 Homebrew 安装了 GCC 和 LLVM/clang。检查共享的 macOS 配置,链接器默认为cc. 我已经安装了 macOS 开发者工具:

$ clang --version
Apple LLVM version 6.0 (clang-600.0.56) (based on LLVM 3.5svn)
Target: x86_64-apple-darwin13.4.0
Thread model: posix

$ gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 6.0 (clang-600.0.56) (based on LLVM 3.5svn)
Target: x86_64-apple-darwin13.4.0
Thread model: posix

$ cc --version
Apple LLVM version 6.0 (clang-600.0.56) (based on LLVM 3.5svn)
Target: x86_64-apple-darwin13.4.0
Thread model: posix

这可能是 Rust 本身可以修复的问题,但您必须提交错误报告/增强请求。您可能可以通过符号链接clangas来解决这个问题cc,而不是仅仅给它起别名,因为在 Rust 调用的环境中可能不存在别名。

于 2015-03-13T14:26:24.780 回答