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: TI C/C++ Compiler
Hi,
Is there a way to build all the build configurations available in a CCS project from command line?
I saw one E2E query on the same topic and the suggestion was to have a batch file which calls the CLI command to build individual build configuration. Is there a way to get the build configuration names as well from CLI?
The problem I have is I need to build multiple projects. Currently I am using a loop to iterate through all the projects and build them. But there are projects with multiple build configurations. Is there a way to get those other than hard coding them in the script
Thanks!
Veena
Veena,
Veena Kamath said:Is there a way to build all the build configurations available in a CCS project from command line?
This has been requested before and there is an enhancement request for it (please see this thread), however it has not been implemented yet.
Veena Kamath said:Is there a way to get the build configuration names as well from CLI?
You could use the com.ti.ccstudio.apps.inspect command.
http://software-dl.ti.com/ccs/esd/documents/ccs_projects-command-line.html#com-ti-ccstudio-apps-inspect
eclipsec -noSplash -data <workspace-directory> -application com.ti.ccstudio.apps.inspect -ccs.projects <project-name>
This will give a lot of detail about the project. You would then need to parse the output to extract the list of configuration names.