我正在尝试在 Linux 下编译一个相当基本的程序,但遇到了ld86
. 有人知道是什么auto_start
吗?
$ bcc -c tc.c
$ as86 -o ts.o ts.s
$ ld86 -d ts.o tc.o /usr/lib/bcc/libc.a
ld86: warning: _gets redefined in file /usr/lib/bcc/libc.a(gets.o); using definition in tc.o
undefined symbol: auto_start
2012 年 3 月 12 日更新:当我定义自己的printf()
...