Xcode:每次创建一个简单的Hello World程序都会失败

时间:2014-09-27 04:13:23

标签: xcode5

非常奇怪:我正在尝试运行一个简单的Hello World程序,但是Xcode说" Build Failed"

我在Log Navigator中看到它有2个警告和1个错误:

Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang failed with exit code 1

代码:

#import <Foundation/Foundation.h>
int main (int argc, const char *argv[])
{
    NSLog (@"Hello, Objective-C!");
    return  (0);
}

1 个答案:

答案 0 :(得分:1)

显然,我忽略了所说的警告:

OS X deployment target '11.0' for architecture 'x86_64' and variant 'normal' is greater than the maximum value '10.8' for the OS X 10.8 SDK.

解决方案:打开构建设置(来自Project Navigator)并检查OS X部署目标的值。它应该是10.8,基于我的配置,也如我的警告中所示。

感谢大家的帮助,经验教训:永远不要忽视警告! ;)