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/TMS570LS0914: Headless build sometimes do nothing

Part Number: TMS570LS0914
Other Parts Discussed in Thread: CCSTUDIO

Tool/software: Code Composer Studio

Hello!

latest CSS 6.2 on windows 10

I automate build on jenkins to buld project I execute next commands

mkdir %CSS_WORKSPACE%

C:\ti\ccsv6\eclipse\eclipsec -noSplash -data %CSS_WORKSPACE% -application com.ti.ccstudio.apps.projectImport -ccs.location %DIR%\ > %LOG%
if %errorlevel% neq 0 exit /b %errorlevel%

C:\ti\ccsv6\eclipse\eclipsec -noSplash -data %CSS_WORKSPACE% -application com.ti.ccstudio.apps.projectBuild -ccs.projects %PROJECT% -ccs.configuration %TARGET% -ccs.autoOpen -ccs.buildType incremental >> %LOG%

if %errorlevel% neq 0 exit /b %errorlevel%

 

Sometimes last command don't compile any file. Errorlevel set to 0. There is log file:

--------------------------------------------------------------------------------
Importing project from 'C:/Jenkins/workspace/1_tx_unit_test_Debug/platform_tx/tx_unit_test/'...


Done!

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
CCS headless build starting... [Fri Mar 02 12:22:27 EAT 2018] 
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

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


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


**** Build of configuration Debug for project tx_unit_test ****

"C:\\ti\\ccsv6\\utils\\bin\\gmake" -k -j 8 all -O 

**** Build Finished ****


================================================================================
CCS headless build complete!
  • Vladimir Romanov said:
    Sometimes last command don't compile any file.

    It is behaving like there is already an up-to-date .out file. You mention this happens sometimes. Are you able to consistently reproducible it for this project or does it happen sometimes but not other times for the same project import/build sequence?

    Are you locked into CCS 6.2 for some reason or would you be willing to try the latest CCS 7.4?

  • There is no out files. I clean workspace before build. 

    After update to 7.4 problem gone.