在命令行中,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