oSX 10.8.2检查gcc错误的位置

时间:2012-11-04 13:44:56

标签: macos gcc

我遇到了Apache ab的问题,我正在尝试用更新版本更新它。

在apache下载运行./configure时,此行出现错误

checking for gcc... /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.8.xctoolchain/usr/bin/cc

该位置不存在,而是在

/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc

如何更改它以查找正确的位置?

1 个答案:

答案 0 :(得分:2)

我在尝试构建tk时遇到了同样的问题。

我能够通过从OSX10.8.xctoolchain到XcodeDefault.xctoolchain创建一个符号链接来运行make。使用以下命令可以轻松完成此操作:

sudo ln -s /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.8.xctoolchain

如果它在错误的位置查找,这也应解决问题,因为它将被重定向到正确的位置。