是否可以在tcc中链接用nasm生成的*.o文件?
有了gcc,它对我来说很好:
nasm -f win32 -o fastmath.o fastmath.asm
gcc -o powerTest.exe powerTest.cpp cexport.o
当我使用tcc尝试相同的过程时,得到了以下错误:fastmath.o:1:错误:无法识别的文件
set name=test
set tccpath=C:\TCC\
set nasmpath=C:\NASM\
%nasmpath%nasm -f win32 -o fastmath.o fastmath.asm
%tccpath%tcc -c main.c
%tccpath%tcc -vv -luser32 -lgdi32 -lopengl32 -lglu32 -o %name%.exe main.o fastmath.o
我在编译选项中忘了什么吗?
最佳答案
Tcc不处理-f win32。改用-f coff。