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.

How to build by command line (eclipsec.exe)

Other Parts Discussed in Thread: CCSTUDIO

Hi, 

I am using CCS v8 and I try to rebuild by command line like "c:\ti\ccsv8\eclipse\eclipsec.exe", but there was a problem below. please advice me to overcome this issue.

1. My workspace folder

2. Source folder path

3. CCS v8 screen --> No problem with rebuild

4. command line command --> Is it correct command line

"c:\ti\ccsv8\eclipse\eclipsec.exe" -nosplash -data "C:\Users\kimkw\workspace_v8" -ccs.autoImport -application com.ti.ccstudio.apps.projectBuild -ccs.projects "D:\000_Workspace\00-Match\01 - before release for Match\99 - test\OJTTEST\000 - Match" -generateMakefiles -application com.ti.ccstudio.apps.projectBuild -ccs.configuration Release -ccs.projects utils
4-1. CCS v3.3 sample --> is there same command like timake.exe on ccs v8 also?
timake.exe PFL_PF2S.pjt CTRL_Release -a
5. error
Please check my command line. 
  • Please check my command line. 

    Have you reviewed the following documentation?:

    https://software-dl.ti.com/ccs/esd/documents/ccs_projects-command-line.html

    One thing I noticed is that this may be wrong because I could not find such an option:

    -ccs.autoImport

    Maybe it should be:

    -application com.ti.ccstudio.apps.projectImport -ccs.location <path> -ccs.autoImportReferencedProjects

  • If the project is already in the workspace then something like this should be the correct command

    eclipsec -noSplash -data <full path to workspace> -application com.ti.ccstudio.apps.projectBuild -ccs.projects <project name> -ccs.configuration <build configuration name>

    Looking at your screen captures this is what I would try:

    eclipsec -noSplash -data "C:\Users\kimkw\workspace_v8" -application com.ti.ccstudio.apps.projectBuild -ccs.projects PFL_PF2S -ccs.configuration INTF_Release

    Regards,

    John