在苹果osx狮子,不要在路径

时间:2012-06-06 20:24:55

标签: xcode macos path makefile install

我对apple和osx相当新。我从应用程序商店安装了xcode,现在我的文件系统中有一个make-executable:

192:~ herbert$ locate make | grep bin
/Applications/Xcode.app/Contents/Developer/usr/bin/gnumake
/Applications/Xcode.app/Contents/Developer/usr/bin/make
/opt/X11/bin/gccmakedep
/opt/X11/bin/makedepend
/opt/local/var/macports/sources/rsync.macports.org/release/tarballs/ports/cross/m68k-elf-binutils/files/binutils-makeinfo-check.patch
/opt/local/var/macports/sources/rsync.macports.org/release/tarballs/ports/cross/mipsel-linux-binutils/files/300-001_ld_makefile_patch.patch
/opt/local/var/macports/sources/rsync.macports.org/release/tarballs/ports/devel/libinchi-1/files/patch-INCHI-1-API_INCHI_API_gcc_so_makefile-makefile.diff
/opt/local/var/macports/sources/rsync.macports.org/release/tarballs/ports/science/indi/files/patch-libindi.pc.cmake.diff
/usr/X11/bin/gccmakedep
/usr/X11/bin/makedepend
/usr/bin/makeinfo
/usr/sbin/makedbm
192:~ herbert$

不幸的是,它不在我的道路上。将/Application/Xcode.app/Content/Developer/usr/bin/附加到我的路径将是一个选项,它似乎是不可行的。我可以以某种方式将其安装到/ usr / ...或/ opt / local /...?

192:~ herbert$ echo $PATH
/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin
192:~ herbert$ 

1 个答案:

答案 0 :(得分:6)

如果要从命令行构建,则必须安装命令行工具(或旧版本的Unix开发工具)。

在4.3.1中,执行此操作的方法是启动Xcode,打开“首选项”,单击“下载”选项卡,单击“组件”子选项卡,然后单击“命令行工具”旁边的“安装”按钮。

在早期版本中,等效项可能是自动的,也可能是初始安装程序中的一个选项,或者它可能是一个单独的安装程序来运行。

还有xcrun工具,它允许您在不安装CLT的情况下使用工具链,对于简单的任务,您可以将CC设置为xcrun clang,{{1} } MAKE等,甚至是xcrun makexcrun/usr/local/bin/clang等等。但是以这种方式设置所有内容都需要做很多工作,而且仍然不足以构建许多源分布式项目。