crt1.o:在函数“ _start”中:-在Linux中未定义对“ main”的引用

crt1.o:在函数“ _start”中:-在Linux中未定义对“ main”的引用,第1张

crt1.o:在函数“ _start”中:-在Linux中未定义对“ main”的引用

尝试添加

-nostartfiles
到您的链接选项,即

$(link) -nostartfiles -g ...

从gcc文档中:

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

这将导致

crt1.o
不被链接(通常默认情况下为链接)-通常仅在实现自己的
_start
代码时使用。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5024619.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存