This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
How can I instruct the TI ARM CLANG compiler to generate listing files during compilation? I see an option to pass -l to the assembler, but that doesn't seem to work when compiling. I'm using 2.1.3.LTS
Unfortunately, tiarmclang does not support assembler listing files. The closest alternative is to disassemble. You can use either the command tiarmdis or the command tiarmobjdump -d.
Thanks and regards,
-George