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.

TMS320F28388D: Docker headless project import and build issue in CCStudio 10.0.0

Part Number: TMS320F28388D
Other Parts Discussed in Thread: CCSTUDIO

Tool/software:

HI,

I am having an issue using CCS 10.0.0 in headless mode running in docker image (in ubuntu 20.04).

I am successfully importing the project through the next shell command:

/opt/ti/ccs1000/ccs/eclipse/eclipse -noSplash -data <workspace> -application com.ti.ccstudio.apps.projectImport -ccs.location <project_name>

Now I am trying only to clean the project with the next command:

/opt/ti/ccs1000/ccs/eclipse/eclipse -noSplash -data <workspace> -application com.ti.ccstudio.apps.buildProject -ccs.projects <project_name> -ccs.clean -ccs.listProblems

But I get the next error: 

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
CCS headless build starting... [Mon Jan 20 13:39:46 GMT 2025] 
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

================================================================================
Pre processing...


================================================================================
Building...


================================================================================

--------------------------------------------------------------------------------
Errors for project 'project_name' (1):

	[project_name]: Product ${INHERITED} v0.0 is not currently installed and no compatible version is available. Please install this product or a compatible version.


================================================================================

--------------------------------------------------------------------------------
Warnings for project 'project_name' (0):




================================================================================
CCS headless build complete! 1 out of 1 projects have errors.




So now, I am trying to find what is ${INHERITED} environment variable.

Could you help me to find this out, please?

  • Hello,

    The easiest way to tell is to look at the dependencies listed in the project properties in the CCS GUI. 

    If you can share the three *.project files in the project folder, I can also take a look there.

    Thanks

    ki

  • I found the solutions but it wasn't straightforward.

    In my local pc, I was using CCS12.8.0. In products tab it wasn't showing any product.

    But, after some investigation, I found a line in .cproject file (project properties configuration file) that was: 

    <listOptionValue builtIn="false" value="PRODUCTS=${INHERITED}:0.0;"/>
    Then, I tried to install CCS10 in my pc, and I found that in products tab, it was shown the product ${INHERITED}:0.0.
    After removing it, it worked like a charm.
    Could you give an explanation of that?
    Thanks! Slight smile