标签: c++ c gcc linker crt
如何在不使用CRT的情况下实现2个.o文件的链接。
编译.c文件:
gcc -ffreestanding -c file.c -o file.o
链接:
gcc file1.o file2.o -o f.o
标志-nostartfiles和-nostdlib对我没有帮助。
答案 0 :(得分:0)
我只编译2个.c文件,我想将其链接到1个目标文件中
ld -r -o f.o file1.o file2.o