4

在命令行中,xcodebuild 给出的结果与在 Xcode UI 中构建不同。

这是我通过的命令行:

$ xcodebuild -sdk iphonesimulator5.0 -configuration Release -scheme mylib -target mylib

请注意,目标设置为创建静态库文件可能很重要。

我知道正在使用不同的设置,因为我在项目文件中关闭了 -Wundeclared-selector。但是,从命令行运行 xcodebuild 时会收到这些警告。

似乎其他人也有这个问题: Why does xcodebuild give different build results than XCode UI

4

1 回答 1

5

我的机器上安装了多个版本的 Xcode。这修复了它:

$ sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer/
于 2012-06-20T22:26:13.613 回答