构建抛出错误“命令... llvm-gcc-4.2 失败,退出代码 1”
这是构建的日志。这是 Xcode 4 中的一个全新项目,因此其中唯一的非常规内容如下:
- 一个 .c 文件
- 一个 .a 库
- 一堆头文件
我一直在使用构建设置并寻找答案现在要花几个小时看看它是否会消失,但它没有。如果您有任何帮助,我们将不胜感激。
Here's the log from the build. This is a brand new project in Xcode 4, so the only non-regular things in it are as follows:
- A .c file
- A .a library
- A bunch of header files
I've been playing with the build settings and searching for answers for a couple of hours now to see if it would go away, but it didn't. Any help you have would be appreciated.!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您遇到重复符号错误 - 您的程序不能有两个名为
main()
的函数。删除其中之一,您应该能够继续前进。You have a duplicate symbol error - your program can't have two functions called
main()
. Remove one of them, and you should be able to move forward.