converter-sample.c 包含重复的 main

发布于 2024-10-11 18:13:37 字数 724 浏览 6 评论 0原文

我正在尝试在 Mac 应用商店上部署应用程序。

我正在

按照 添加代码来验证收据的过程文档我已经完成了以下步骤

  1. 使用sudo port install asn1c安装了asn1c
  2. 在目录asn1c_dir中创建了一个文件modlule.asn1来自清单 1-1。
  3. cd asn1c_dir
  4. asn1c -fnative-types module.asn1
  5. 然后在 Xcode 中“添加现有文件”并添加 asn1c_dir 目录
  6. 尝试构建,但我得到〜900 个错误
  7. 在目标构建设置中,我选中“始终搜索用户路径”旁边的框,

现在出现一个错误,指出“/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

  1. Installed asn1c using sudo port install asn1c
  2. Created a file modlule.asn1 in a directory asn1c_dir from listing 1-1.
  3. cd asn1c_dir
  4. asn1c -fnative-types module.asn1
  5. Then in Xcode "add existing files" and add the asn1c_dir directory
  6. Try building, but I get ~900 errors
  7. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

信仰 2024-10-18 18:13:37

因此,出于度量原因,我将回答这个问题。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文