crt1.o: In function `_start': - undefined reference to `main' in Linux

淺唱寂寞╮ 提交于 2019-11-27 06:58:51

Try adding -nostartfiles to your linker options, i.e.

$(LINK) -nostartfiles -g ...

From the gcc documentation:

-nostartfiles
    Do not use the standard system startup files when linking. The standard system libraries are used normally, unless -nostdlib or -nodefaultlibs is used. 

This causes crt1.o not to be linked (it's normally linked by default) - normally only used when you implement your own _start code.

user2783604

-shared link option must be used when you compile a .so

I had similar result when trying to build a new test project with boost, and it turned out that I was missing one declaration :

#define BOOST_TEST_MODULE <yourtestName>

I had a similar result when compiling a Fortran program that had C++ components linked in. In my case, CMake failed to detect that Fortran should be used for the final linking. The messages returned by make then ended with

[100%] Linking CXX executable myprogram
/lib/../lib64/crt1.o: In function `_start':
(.text+0x20): undefined reference to `main'
make[3]: *** [myprogram] Error 1
make[2]: *** [CMakeFiles/myprogram.dir/all] Error 2
make[1]: *** [CMakeFiles/myprogram.dir/rule] Error 2
make: *** [myprogram] Error 2

The solution was to add

set_target_properties(myprogram PROPERTIES LINKER_LANGUAGE Fortran) 

to the CMakeLists.txt, so that make prints out:

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