ld: 1 duplicate symbol for architecture x86_64

丶灬走出姿态 提交于 2019-12-18 14:52:56

问题


I'm very very new to C and C++ programming, and have very little experience in Software Programming (my background is Web Based) But I'm trying to experiment with C / C++ and Xcode... So I've found this code (and many similar variations online):

#include <stdio.h>

int main()
{
    printf ("Test");
    return 0;
}

Yet when I come to compile it in Xcode I get the following error:

> duplicate symbol _main in:
>     /Users/thomas/Library/Developer/Xcode/DerivedData/test-etqojvxbxhxjqeggdzkbfufvbeza/Build/Intermediates/test.build/Debug/test.build/Objects-normal/x86_64/first.o
>     /Users/thomas/Library/Developer/Xcode/DerivedData/test-etqojvxbxhxjqeggdzkbfufvbeza/Build/Intermediates/test.build/Debug/test.build/Objects-normal/x86_64/main.o
> ld: 1 duplicate symbol for architecture x86_64 clang: error: linker
> command failed with exit code 1 (use -v to see invocation)

Maybe Xcode is the wrong thing for me to be using as a newbie? If anyone could recommend a better compiler, that would be great too!


回答1:


When you create a new project in Xcode, it automatically gives you a starting file with main() in it. If you created a new file, such as first.c, and then pasted your test code into it, you'll be defining main() twice, and getting that error.

You need to either delete the file (such as main.c, or main.m) that Xcode provides in your new project, or cut and paste your sample code into that file, instead of creating a new one.



来源:https://stackoverflow.com/questions/25943779/ld-1-duplicate-symbol-for-architecture-x86-64

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!