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,
This is a question similar to what I asked before e2e.ti.com/.../729103
My goal is to use projectspec to create a CCS SYSBIOS project. In the CCS project I have a such setting ${BIOS_CG_ROOT}/packages/ti/posix/ccs
How do I add this using projectspec file, it may like something
-rtsc.setConfiguroOptions "--xdcpath=${BIOS_CG_ROOT}/packages/ti/posix/ccs" but I don't know the exact syntax. I tried several ways but didn't get it work. Thanks!
Again, I attached the projectspec file for your reference. rtos_template_app_am572x_m4_evmAM572X.projectspec
Regards, Eric
Eric,
The syntax would be similar to the answer that was provided in your previous post.
Add a property element like so:
<property name="configuroOptions" value="--xdcpath=${BIOS_CG_ROOT}/packages/ti/posix/ccs"/>
Multiple configuroOptions can be inserted within the double-quotes for value.
Hope this helps.
Aarti,
Thanks! This was one of my trial, I had syntax with:
<property name="platform" value="ti.platforms.evmAM572X"/>
<property name="buildProfile" value="release"/>
<property name="isHybrid" value="true"/>
<property name="configuroOptions" value="--xdcpath=${BIOS_CG_ROOT}/packages/ti/posix/ccs"/>
However, I didn't see such an entry in the created CCS project (so I can't build it).
Regards, Eric