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.

CODECOMPOSER: CCS 12.8.1 How to set up and generate .lst, .asm file?

Part Number: CODECOMPOSER
Other Parts Discussed in Thread: CC2652P7, CC1352P7

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

  • Hello,

    It is typically under Assembler Options:

    But I don't see this option for you. The compiler options available in your screenshot is less than mine. What version of the arm compiler are you using? And for which device?

    ki

  • Hi Ki,

    Compiler version: TI Clang4.0.2.LTS

    Device: CC1352P7, CC2652P7

    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

  • Hi Ki,

    This option retains the ASM file; however, the list file is still not generated.

  • 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