Christian Jullien wrote:
Q. how can I see the .s output (as generally using -S on most compilers) ?
TCC outputs machine code, not assembler. You can disassemble it though: $ tcc -c x.c $ objdump -D x.o on win64: $ x86_64-pc-mingw32-objdump -D x.o --- grischka _______________________________________________ Tinycc-devel mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/tinycc-devel
