How do I generate a.out file format with gcc on x86 architectures ?
With nasm I can do this easily with -f flag, for example:
[user@host]$ nasm -f aout start.asm
[user@host]$ objdump -a start.o
start.o: file format a.out-i386-linux
start.o
[user@host]$
On linux, compiling .c files produces an elf object. How can I produce a.out files with gcc ?
CONFIG_BINFMT_AOUTis enabled at compile time. – Quentin Casasnovas Nov 28 '11 at 23:03