我正在尝试像这样运行macports:
port install php5
但是,当我这样做时,我收到此错误:
Error: Unable to open port: can't read "build.cmd": Failed to locate 'make' in path: '/opt/local/bin:/opt/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin' or at its MacPorts configuration time location, did you move it?
所以我查看了我的路径:
declare -x PATH="/Developer/usr/bin:/opt/subversion/bin:/opt/local/bin:/opt/local/sbin:/usr/local/php5/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin"
然后确保 make 位于其中一个目录中:
ls -l /Developer/usr/bin/make
$ lrwxr-xr-x 1 root admin 7 Aug 7 16:47 /Developer/usr/bin/make -> gnumake
并输入:
make
产生:
make: *** No targets specified and no makefile found. Stop.
所以我知道它就在那里。
但是macports找不到它。有任何想法吗?
G人
还有一件事 - 从 OS X App Store 安装 xCode 4.3 后,启动 xCode,然后转到 Preferences -> Downloads 并安装“命令行工具”。重新启动终端,您将能够使用 Make。
安装 XCode 后您是否升级过 Mac OS?系统更新,不管是 10.5 到 10.6 的主要更新,可能会从 /usr/bin 中删除这些程序。下载最新的 Xcode 并重新安装。它应该把它们放回去。
您可以自己制作符号链接:
which make
(确保它在那里)cd /usr/bin
ln -s /Developer/usr/bin/make make