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/TMS570LS20206: Command Line CCS build

Part Number: TMS570LS20206
Other Parts Discussed in Thread: CCSTUDIO

Tool/software: Code Composer Studio

I have a CCS project with attached project files. To automate the build I want to run build the project through command line. But given command not working.

eclipsec -noSplash -data "<workspace_dir>" -application com.ti.ccstudio.apps.projectBuild (-ccs.projects <name1>[ <name2>]* | -ccs.workspace) [<options>]

Could you please tell whats wrong here

eclipsec -noSplash -data "SwProjectPath" -application com.ti.ccstudio.apps.projectBuild

  • Hello

    Nikhil Gupta2 said:
    eclipsec -noSplash -data "D:\BuildProject\EA3\Chery_T1X\Verification\Chery_T1x_03.01.08\Chery_T1x_EPS_TMS570\SwProject" -application com.ti.ccstudio.apps.projectBuild

    You did not specify a project to build.

    Note that the "-data" parameter is expecting a workspace folder, not a project folder. 

    eclipsec -noSplash -data "<workspace_dir>" -application com.ti.ccstudio.apps.projectBuild (-ccs.projects <name1>[ <name2>]* | -ccs.workspace) [<options>]

     

  • Hi Ki,

    Thanks, for your quick reply.

    Could you please remove the project path from your reply(ScreenShot). It will be grateful. 

    I tried giving  WorkSpace  after -data "C:\ti\ccsv5\eclipse\eclipse.exe -noSplash -data D:\WorkPlace  -ccs.projects Chery_T1x -ccs.configuration Debug"

    I don't see anything happening. Even I tried below command after building the project in GUI still I see no progress only GUI opens in back ground.

    C:\ti\ccsv5\eclipse\eclipse.exe -noSplash -data D:\WorkPlace  -ccs.projects Chery_T1x -ccs.clean

    Please let me know if I am missing something.

  • Nikhil Gupta2 said:
    C:\ti\ccsv5\eclipse\eclipse.exe -noSplash -data D:\WorkPlace  -ccs.projects Chery_T1x -ccs.clean

    You are calling the wrong executable. You need to call eclipsec.exe, not eclipse.exe.

  • Dear Ki,

    I am sorry but again no progress, I can see command run but no end to it. and in GUI Console tab also no progress shown.

    And I was trying even Importing existing project from different location, But project name is same, I am getting below error;

    As this is only my requirement to build projects from different location (Same Project name, Separate Project Path) 

  • You also forgot to specify the action (I failed to notice this earlier)

    Try:

    C:\ti\ccsv5\eclipse\eclipsec.exe -noSplash -data D:\WorkPlace -application com.ti.ccstudio.apps.projectBuild -ccs.projects Chery_T1x -ccs.clean

  • Hi Ki,

    Thank you very much for your support, Its working now.

    Only the issue I have having now to import the project with same project name but different location. Do we have any delete option.

    So that I can delete the existing project and import the other one with same Project name.

    Thanks,

    Nikhil