When I compile my source code (c/c++) I would like to see the ARM Cortex asm code that the compiler produces along with the source code. I can see it when I am debugging, but is there a target option in the linker to produce that type of listing ? A .cod file ?
tia
The compiler can generate a *.txt file that contains assember+source, but only if you have the commercial version of the tools. The evaluation version doesn't have that option.
Thanks but I figured it out. For those looking the for the answer, its the --asm --interleave or -S --interleave compiler options.
:)