converter-sample.c 包含重复的 main
我正在尝试在 Mac 应用商店上部署应用程序。
我正在
按照 添加代码来验证收据的过程文档我已经完成了以下步骤
- 使用
sudo port install asn1c
安装了asn1c - 在目录
asn1c_dir
中创建了一个文件modlule.asn1
来自清单 1-1。 cd asn1c_dir
asn1c -fnative-types module.asn1
- 然后在 Xcode 中“添加现有文件”并添加
asn1c_dir
目录 - 尝试构建,但我得到〜900 个错误
- 在目标构建设置中,我选中“始终搜索用户路径”旁边的框,
现在出现一个错误,指出“/foo/bar/ppc/converter-sample.o 和 /foo/bar 中的符号 _main 重复” /ppc/main.o
我已经跟踪到这个事实,它看起来像文件 converter-sample.c 声明它自己的 int main()
函数,这很糟糕,对吧
? 。
I'm trying to deploy an application on the mac app store.
I'm working through the process of adding the code to validate the recipts
In accordance to the documentation I've compleated the follwing steps
- Installed asn1c using
sudo port install asn1c
- Created a file
modlule.asn1
in a directoryasn1c_dir
from listing 1-1. cd asn1c_dir
asn1c -fnative-types module.asn1
- Then in Xcode "add existing files" and add the
asn1c_dir
directory - Try building, but I get ~900 errors
- In the target build settings, I check the box next to "Always Search User Paths"
I now get a single error saying "Duplicate symbol _main in /foo/bar/ppc/converter-sample.o and /foo/bar/ppc/main.o
I've tracked this to the fact that it looks like the file converter-sample.c declares it's own int main()
function which is bad right?
any help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此,出于度量原因,我将回答这个问题。
converter-sample.c
是一个不必要的文件。 删除它。做一个快乐的人,过你的生活。So for metric reasons, I'll answer this question.
converter-sample.c
is an unnecessary file. Delete it. Go about your life a happy person.