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.
Hi AartiG,
I am also facing the "Program makefile not found in PATH" error. Here are the details.
On windows 10 Pro(64 bit), I installed CCS(Version: 7.4.0.00015) and tried to build project for EK-TM4C123GXL. By referring TI forums related to this issue, I tried following, but still the error persist. Please let me know if I am missing anything here and give me pointers to build the project successfully.
1) creating a new workspace and import the project in that
2) turning off the Anti Virus, real time scanning.(Please refer below image for details)
3) Setting up build properties (please refer below image for details)
Note: While installing online version of CCS installer I got warning about AV running (Please see below image for details). So by referring to suggestion in one the TI forums, I might try uninstall current CCS setup and download offline CCS installer. I am not really sure whether this makes sense.
Thanks and regards,
Sanjeev
Sanjeev,
I split this into a separate thread as the cause of error here may be different than what was in the original thread you posted to.
Looking at your screenshot your build command is: ${TIVAWAREDLIB_ROOT}\Makefile
It appears that this project is set up to use a custom makefile for build, rather than the managed make build that CCS defaults to. The build command typically invokes a make utility such as gmake or make. The make then reads in a makefile as an argument.
I don't know specifics about your project, but I would think your command should look something like:
gmake -f ${TIVAWAREDLIB_ROOT}\Makefile
Hi Aarti,
Thanks for the pointers. I could solve the "Program makefile not found in PATH" by doing below configuration settings.
1) Set ${ccs_install_root}/utils/bin/gmake -all in (Build-> Builder -> build command)
2) Set device connection, variant in project properties "General" tab.
The issue got resolved, but I am facing another issue while debugging. I will post the issue in another related thread.
Thanks again.
Sanjeev