So a solution could be a gcc option to set the linker. The linker is
called pipe-tool.exe.
Any Idea?
Thanks
You could also avoid gcc calling the linker, with the -c option.
Then add the calls to pipe-tool.exe in your makefile as needed.
foo.o:foo.c
gcc -c -o foo.o foo.c
foo.exe:foo.o
pipe-tool.exe -o foo.exe foo.o
--
__Pascal Bourguignon__