Reputation: 6185
I'm trying to compile a program with the mbed CLI using the following command:
mbed compile -m UBLOX_C027 -t ARM
It results in the following error:
make.py: error: Could not find executable for ARM.
Currently set search path: No path set
How can I set the executable?
Upvotes: 1
Views: 4010
Reputation: 859
I know I am way too late but still if anyone is facing the same problem. I solved it in this way in MAC OS.
mbed config -G GCC_ARM_PATH "/Users/amod-mac/Desktop/gcc-arm-none-eabi-7-2017-q4-major/bin"
Upvotes: 7
Reputation: 27352
Two ways, either:
ARM_PATH
in mbed_settings.py in the root folder of your project.Note that ARM
compiler target is for the commercial ARM compiler. If you're using GCC ARM use the GCC_ARM
target.
Upvotes: 5