我已使用Xcode 4.6
OS X Mountain Lion (10.8.5)
现在我要安装Xcode 5.1.1
并保持Xcode 4.6
安装。
这是一个好主意还是旧Xcode 4
会干扰新版本5?
答案 0 :(得分:0)
Xcode应用程序现在是自包含,这意味着它们携带的SDK和工具都隐藏在其应用程序包中。
所以你可以并排安装Xcode 4和Xcode 5,只要你明确哪个版本(在我自己的机器上,我将我的Xcode 4保存在“Xcode4
”文件夹中)。
我能想象的唯一可能的冲突是,如果你使用命令行工具(构建开源资源或使用makefile等),你可能想要指定使用哪些编译器和工具,你可以通过“xcode-select
”工具完成。使用此功能需要“sudo
”和管理员访问权限:
xcode-select: error: no command option given
Usage: xcode-select [options]
Print or change the path to the active developer directory. This directory
controls which tools are used for the Xcode command line tools (for example,
xcodebuild) as well as the BSD development commands (such as cc and make).
Options:
-h, --help print this help message and exit
-p, --print-path print the path of the active developer directory
-s <path>, --switch <path> set the path for the active developer directory
-v, --version print the xcode-select version
-r, --reset reset to the default command line tools path