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: Code Composer Studio
Dear Champs,
I have a CCS 8.0 project on A15 core using SYSBIOS 6.52, like a typical CCS project I have compiler, linker setting, source code, include path, library, etc. One difference is there is a .bld file to customize the platform (see below). I have no issue to build this CCS project.
My goal is to use projectspec to automatically generate such a CCS project. I knew how to do all the other syntax except how to add a such bld file. I attached a template projectspec for reference.
It may like something:
-rtsc.setConfiguroOptions "-b ${PDK_INSTALL_PATH}/ti/build/am572x/config_am572x_a15.bld -DBOARD=idkAM572x" but I don't know the exact syntax inside projectspec file. Please help!
Regards, Eric
Eric,
Add a property element (under your other property elements) like so:
<property name="configuroOptions" value="-b ${PDK_INSTALL_PATH}/ti/build/am572x/config_am572x_a15.bld"/>
You can add other configuroOptions as well within the double-quotes if you wish.