2

我最近升级到 Lion 和 XCode 4.3,现在我对 perl 所做的任何需要 C 编译器的操作都无法构建:

root# perl Makefile.PL 
Couldn't find your C compiler
Compilation failed in require at Makefile.PL line 5.
BEGIN failed--compilation aborted at Makefile.PL line 5.

我的 c 编译器设置为:

root# perl -V:cc
cc='llvm-gcc-4.2';

XCode 4.3 有什么改变吗?我现在如何为 perl 设置 C 编译器?

4

2 回答 2

5

新版本的 Xcode 不会安装可以在$PATH. 您需要转到 XCode 首选项的“下载”部分并选择安装命令行工具。

来自 Apple的更多信息(查找“命令行工具是可选的”)。

于 2012-06-05T19:50:34.397 回答
0

如果您认为它们兼容,您可以创建符号链接或编辑 Config.pm (path = perl -MConfig -E'say $INC{"Config.pm"}')。

于 2012-06-05T22:21:43.677 回答