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.
Tool/software: Code Composer Studio
The examples provided on the CCS projects build/create page don't seem to work for a CCS v7 command line build. for example the "-ccs.buildType clean" option seems to be not working. For example:
eclipse -noSplash -data workspace_v7/ -application com.ti.ccstudio.apps.projectBuild -ccs.projects <project name> –ccs.buildType clean
that command, when provided with a legfitimate project name in the workspace, yields the following warnings:
!WARNING: Project '–ccs.buildType' was not found in the workspace! Ignoring...
NOTE: use the '-ccs.autoImport' argument to automatically import projects found in the workspace root directory.
!WARNING: Project 'clean' was not found in the workspace! Ignoring...
NOTE: use the '-ccs.autoImport' argument to automatically import projects found in the workspace root directory.
Ken Price97 said:!WARNING: Project '–ccs.buildType' was not found in the workspace! Ignoring...
NOTE: use the '-ccs.autoImport' argument to automatically import projects found in the workspace root directory.
!WARNING: Project 'clean' was not found in the workspace! Ignoring...
NOTE: use the '-ccs.autoImport' argument to automatically import projects found in the workspace root directory.
Looking at the above output, eclipse thinks that –ccs.buildType and clean are also inputs to the -ccs.projects option. So it is not reading -ccs.buildType as an option.
Ken Price97 said:$CCS_ECLIPSE/eclipse -noSplash -data workspace_v7/ -application com.ti.ccstudio.apps.projectBuild -ccs.projects alice_m4 –ccs.buildType clean
Could you check the "-" (dash) in the -ccs.buildType option, it looks different than the others in the command line and is perhaps being treated as non-ascii.