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.
Tool/software:
Hi,
I was unable to find the Assembler option to generate the .lst and .asm files in the Project Properties.
Could you please provide the configuration methods to generate the .lst and .asm files?
Best regards,
Bank
Compiler version: TI Clang4.0.2.LTS
Try using the -save-temps option:
It should keep the asm files thought not sure about the list files
however, the list file is still not generated.
I will bring this thread to the attention of the compiler experts who can suggest further.
This option retains the ASM file; however, the list file is still not generated.
Assembler listing files, in the general case, are not supported.
Throughout the tiarmclang toolchain, GNU-syntax assembly is used. Even so, it remains possible to build an assembly source file that uses the older TI-syntax assembly. Such a source file must be built with -x ti-asm. When building that TI-syntax file, it is possible to generate a listing file by using the option -Xti-assembler -l. For details, please see the Assembler Options page from the migration guide part of the tiarmclang online manual.
Thanks and regards,
-George