Forum Discussion
Altera_Forum
Honored Contributor
21 years agoots_dev,
The __gcc__ option "-S" is correct (that's uppercase 'S'). With this option gcc stops after compiling and the output is an assembler file. When you use "-s" (lowercase) as a __make__ option, you're telling make to run in silent mode. You can always use objdump to view the actual object file as well with the -D option : nios2-elf-objdump -D foo.o Regards, --Scott