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.

CCS: How to export the Compiler/Processor Option into CCS5



Tool/software: Code Composer Studio

Hi all,

i'm try to export all project setting of my project to save it in a shared repo folder with source code in order to load it on a different pc without edition by hands the project setting.

I used the Export function C/C++ Project setting but the Compiler/Processor option are not included..

How can i export also the Compiler/Processor option?

Thanks

Stefano

  • Hello,
    Assuming you are using a CCS project, I do not see a way to have the CGT build options exported to a file. The options are stored in the project metadata (.cproject) file.

    If you are looking to share the same project options across multiple projects, one thing you can do is to have many of the build options specified in an external compiler command file and then specify that command file for input during the project build (via --cmd_file option). This will make it easy to manage the options across multiple projects (just change the options in the compiler command file to impact all the projects that use it)

    Thanks
    ki