【发布时间】:2013-07-27 14:02:11
【问题描述】:
我正在尝试在 MAC OS X 10.9 中安装 cmake,并得到以下错误日志:
Error when bootstrapping CMake:
Cannot find appropriate C compiler on this system.
Please specify one using environment variable CC.
See cmake_bootstrap.log for compilers attempted.
但我已经在我的操作系统中安装了 gcc:
localhost:cmake-2.8.11.2 markyoung$ gcc --help
Usage: i686-apple-darwin11-llvm-gcc-4.2 [options] file...
Options:
-pass-exit-codes Exit with highest error code from a phase
--help Display this information
--target-help Display target specific command line options
...
我该如何解决这个问题?
【问题讨论】:
-
如果您按照邮件中的建议发送到
export CC=gcc或export CC=clang会发生什么? -
cmake_bootstrap.log解释原因了吗? -
其实没什么用处
-
homebrew 提到了 cmake 构建问题和 10.9。 this link 提供了一些细节。
标签: linux macos gcc cmake osx-mavericks