xcode llvm 5.0错误没有这样的文件或目录

时间:2014-04-29 11:45:35

标签: ios xcode llvm

我有这个错误显示,LLVM APPlE 5.0有什么想法吗? 我还清理,删除了派生数据,检查了滚动视图委托方法,检查了构建设置中的前缀和构建阶段

clang: error: no such file or directory: '/Users/zoe/Documents/PROJECT /TapADogNEW copy 2/TapADogNEW/TapADogNEW/TapADogNEW-Prefix.pch'
clang: error: no input files
Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang failed with exit code 1

3 个答案:

答案 0 :(得分:2)

原因在错误消息中描述:找不到 *。pch 文件:
检查目标设置并设置前缀头文件的正确路径:
Project settings

答案 1 :(得分:0)

我在重命名文件时随时在Xcode 6中收到此错误。

通常在Xcode 5中我会重命名一个项目,但这在Xcode 6中不起作用。

我必须回到原来的名字,因为它不会改变所有正确位置的名称。

提交错误报告:19086479

答案 2 :(得分:0)

我刚刚从File-> NewFile-> Other-> pch文件创建了pch文件并替换了oldone。该项目成功构建后

相关问题