Which version of Xcode does xcodebuild use?(xcodebuild 使用哪个版本的 Xcode?)
问题描述
我在同一台机器上安装了 Xcode 3.2 和 Xcode 4.0.2,它使用 Hudson 进行自动化 CI(持续集成)构建.当我说两者都已安装时,我的意思是我可以同时或互换使用 Xcode 3 和 Xcode 4.它们都存在于机器上,因为我为 Xcode 4 进行了自定义安装,而没有覆盖 Xcode 3(据说).
I have installed both Xcode 3.2 and Xcode 4.0.2 on the same machine, which uses Hudson for automated CI (continuous integration) builds. When I say that both were installed, what I mean by that is that I can use both Xcode 3 and Xcode 4 simultaneously or interchangeably. They both exist on the machine, as I did a custom install for Xcode 4 without overwriting Xcode 3 (supposedly).
- 对xcodebuild"的命令行调用会调用 Xcode 3 还是 Xcode 4?
- 这个问题有意义吗?可能了解或不了解该主题的人要求使用 3 构建一些项目,而使用 4 构建一些项目.
- 或者,Xcode 3 的xcodebuild"存储位置与 Xcode4 的xcodebuild"存储位置是否存在单独的位置?如果有,我可以在构建脚本中使用不同的路径.
推荐答案
您可以通过
xcode-select -print-path
了解 xcodebuild 使用的版本.另外,使用xcode-select -switch <path>
You can find out what version is xcodebuild using with
xcode-select -print-path
. Also, change to a different version usingxcode-select -switch <path>
这篇关于xcodebuild 使用哪个版本的 Xcode?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:xcodebuild 使用哪个版本的 Xcode?
基础教程推荐
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01