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?
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 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?
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.c
Invoking: Cross GCC Compiler
arm-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 switch
make: *** [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.
You have a comma after the -march=armv7a option -- that could be the issue. Could you remove the comma and see if that helps?