Apple LLVM编译器4.2错误退出代码1

时间:2013-05-14 13:25:17

标签: ios xcode compiler-errors

这已被问过很多次,但我无法找到解决问题的方法。这是我得到的错误:

  

clang:错误:没有输入文件   命令/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang失败,退出代码为1

截图:

enter image description here

我希望有人可以帮助我。我正在使用Parse SDK。 (见:parse.com)

2 个答案:

答案 0 :(得分:1)

您应检查构建设置并验证GCC_PREFIX_HEADER中的文件名和路径

Apple LLVM编译器4.2 - 语言     前缀标题

这是我的。只是一个例子

GCC_PREFIX_HEADER = DC Wire Sizer/SupportingFiles/DC Wire Sizer-Prefix.pch

仅供参考:如果您在Xcode中选择Prefix Header构建设置并复制,您将获得上面的行,但是当您设置该值时,您不应该包含'GCC_PREFIX_HEADER ='

这是不正确的:

enter image description here

enter image description here

这是正确的设置:

enter image description here enter image description here

注意:这些值与上面的不同,因为它们来自不同的项目。

答案 1 :(得分:0)

创建项目时应创建.pch文件,必须以某种方式意外删除它,只需创建一个具有该名称的新文件并将其放入其中:

#import <Availability.h>

#ifndef __IPHONE_5_0
#warning "This project uses features only available in iOS SDK 5.0 and later."
#endif

#ifdef __OBJC__
    #import <UIKit/UIKit.h>
    #import <Foundation/Foundation.h>
#endif

可能需要略有不同,但应该让您的项目再次运作