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: compile fails in Release mode, works in Debug mode

Tool/software: Code Composer Studio

I am moving a project from V5.5CCS to V6. I can compile the C28 side of the F28M35H52C1 device without errors, but when switching to Release mode, I receive an error:

Build-configuration 'Release_F28M35x' does not exist in the referenced project 'hal_afe'. Use the 'Properties > Build > Dependencies' page to select an existing build-configuration.

In the Properties - Build - Dependicies, I receive

hal_afe <unresolved:Release_F28M35x>

phy_vcu <unresolved:Release_FCC>

csl_f28m35x_c28 <unresolved:Release>

What is causing this error and how do I resolve the above??

Thanks,

Pat

  • Pat Harris said:
    Build-configuration 'Release_F28M35x' does not exist in the referenced project 'hal_afe'. Use the 'Properties > Build > Dependencies' page to select an existing build-configuration.

    The message is saying that the main project is set up to be dependent on Release_F28M35x build configuration of the project hal_afe, but that configuration does not exist. Is it possible that the configuration existed at one point (when the dependency was set up) but was perhaps deleted at a later time? You would need to go into Project Properties->Build->Dependencies tab and, for each of the dependent projects, set the dependency to a build configuration that is valid for that project.