Ios xcodebuild跳过代码设计步骤

Ios xcodebuild跳过代码设计步骤,ios,xcode4,xcodebuild,Ios,Xcode4,Xcodebuild,我有一个从XCode v4.0.2 gui构建的项目。但是,当我通过xcodebuild从命令行运行它时: xcodebuild -target MyProj -configuration Release -sdk iphoneos 它将一直运行到ProcessProductPackaging: CompileC ... CompileC ... Ld ... Ld ... CreateUniversalBinary ... CreateDSYM

我有一个从XCode v4.0.2 gui构建的项目。但是,当我通过xcodebuild从命令行运行它时:

xcodebuild -target MyProj -configuration Release -sdk iphoneos
它将一直运行到ProcessProductPackaging:

    CompileC ...
    CompileC ...
    Ld ...
    Ld ...
    CreateUniversalBinary ...
    CreateDSYMFile ...
    ProcessProductPackaging ...

** BUILD SUCCEEDED **
在XCode gui中,我可以看到它执行这些步骤,但它也执行代码设计步骤。为什么从命令行运行时会跳过它?xcodebuild不应该做与gui相同的事情吗