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.

running makefile on CCS

Hi,

I am new to CCS.

I have code files that were implemented on Linux. My task is to run these files using CCS on Windows.

For example, the file mcu_10 contains some files besides makefile. On the internet, I found that CCS can build a program using a makefile and import the related files. If so, could you please guide me with the steps to run the makefile on the CCS?

CCS version is 10.4.0.00006

Thank you.

  • Hello,

    On the internet, I found that CCS can build a program using a makefile and import the related files. If so, could you please guide me with the steps to run the makefile on the CCS?

    Yes, CCS can use an existing makefile. It is commonly referred to as a "standard makefile project". Please see section 6.1.2.1.3 in the CCS User's Guide:

    https://software-dl.ti.com/ccs/esd/documents/users_guide/ccs_project-management.html#creating-new-makefile-project

    Thanks

    ki

  • Hi,

    Thank you for your response.

    I followed the steps to run an existing makefile on CCS; however, I have the following issue.

    10:20:21 **** Incremental Build of configuration Default for project makeFileTest5 ****
    make all
    Cannot run program "make": Launching failed

    Error: Program "make" not found in PATH
    PATH=[C:\ti\ccs1040\ccs\ccs_base\common\bin;C:\ti\ccs1040\ccs\ccs_base\common\uscif;C:\Program Files (x86)\VMware\VMware Workstation\bin\;C:\Program Files (x86)\RSA SecurID Token Common;C:\Program Files\RSA SecurID Token Common;C:\Program Files (x86)\Integrity\ILMClient11\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\PROGRA~2\INTEGR~1\Toolkit\mksnt;C:\Program Files (x86)\Pulse Secure\VC142.CRT\X64\;C:\Program Files (x86)\Pulse Secure\VC142.CRT\X86\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\ti\CORE_SDK_RTOS_JACINTO_07_03_00_07\xdctools_3_61_04_40_core]

    Thanks,

    Mohammed

  • The error is indicating that it cannot find the make utility on the system path. Note that CCS comes with gmake, not make. If you specified some other toolchain, make sure that it is installed on your system and the path to the make utility for it isavailable on the system path or you have the full path to it specified in your project

    ki