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.
I would like to build a CCSV5.0.2 project from an external makefile
In CCS 3.3 there were .pjt files and you could call timake the build the CCS 3.3 project from a makefile.
In CCS 5.0.2, if you take the Hello_World project built for sysBIOS and build it, CCS will generate a Debug tree below the base directory of the project and populate the Debug tree, with all the files necessary to build the project, and then invoke an automatically generated makefile to perform the build. What I want to do is invoke the same process from my own makefile. Is there a way to do this?
Hi Neil,
In CCSv5, there are some command line utilities you can use to build projects from the command line. It is equivalent of the CCSv3 timake utility.
See:
http://processors.wiki.ti.com/index.php/Projects_-_Command_Line_Build/Create
NOTE that the above link is for v4. In v5, things have slightly changed. Basically replace "java -jar startup.jar" with "eclipsec -noSplash"
For example:
CCSv4: "jre\bin\java -jar startup.jar -data "C:\myWorkspace" -application com.ti.ccstudio.apps.projectBuild -ccs.projects newProject -ccs.clean"
CCSv5: "eclipsec -noSplash -data "C:\myWorkspace" -application com.ti.ccstudio.apps.projectBuild -ccs.projects newProject -ccs.clean"
Thanks
ki