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.

CCSTUDIO: Minimal Build for PHYTEC AM64x

Part Number: CCSTUDIO
Other Parts Discussed in Thread: SYSCONFIG

Tool/software:

Hello,

I am trying to do a minimal build using a headless install of Code Composer Studio for the Phytec AM64x board. The current build takes up a lot of space and time as it is inefficient to install the whole CCS environment. I was wondering if there is another way to install only the required binaries or executables to build the project. I still need CCS since I am using the .project, .cproject files.

  • Hello,

    You won't be able to create/build CCS projects without an installation of CCS. There is no way to just install the project server.

    You can install just the compiler and other related build tools (sysconfig, bios, etc) and just use custom makefiles that you can call with gmake. Note that makefiles are used under the hood during CCS builds. CCS generates makefiles from the project and calls gmake to build. You can just take the generated makefiles and build your project calling gmake directly. 

    Thanks

    ki

  • Oh ok. Would it be possible to write a custom makefile that invokes the sysconfig/ti-arm-clang and not rely on the CCS generated ones?