I followed the wiki on http://processors.wiki.ti.com/index.php?title=How_to_create_GCC_projects_in_CCSv5&oldid=101628
but keep getting "program cs-make not found in path"
Is there something I am missing?
cs-make is a make utility that comes with the Code Sourcery package. You can use a different make utility if you want.
Whichever utility you use will need to be on your PATH.
John
If my reply answers your question please mark the thread as answered
I am getting the same error. However, I correctly installed CodeSourcery (arm-2011.03) and a quick search in it's installation directory did not yield any executable called cs-make. Therefore I am trying to get a long with the default build command.
André
When I try compile a simple Hello World, the process fails with the following message:
make all
Building file: ../main.cInvoking: Cross GCC Compilerarm-none-eabi-gcc -O0 -g3 -Wall -c -fmessage-length=0 -march=armv7a, -mtune=cortex-a9 -MMD -MP -MF"main.d" -MT"main.d" -o "main.o" "../main.c"cc1: error: bad value (armv7a,) for -march switchmake: *** [main.o] Fehler 1
I am not sure whether this is caused by the "wrong" make command. However, I also tried to use -march=armv7-a which results in the same error. I am kind of stuck now.