Forums » Software development »
Compiling firmware
Added by minczer about 10 years ago
Hello,
I have a problem with installing ans setting the compiler at Linux.
I tried to build mbed libraries, and the message of the teminal is the next:
Building library CMSIS (LPC1768, GCC_ARM)
Copy: core_cmFunc.h
Copy: core_cm4_simd.h
Copy: core_cm4.h
Copy: core_cm0plus.h
Copy: core_cm0.h
Copy: core_cmInstr.h
Copy: core_cm3.h
Copy: system_LPC17xx.h
Copy: cmsis_nvic.h
Copy: cmsis.h
Copy: LPC17xx.h
Copy: LPC1768.ld
[Errno 2] No such file or directory
Completed in: (0.02)s
- GCC_ARM::LPC1768
Whats the problem with this?
I followed the instructions of the Readme.md
Thanks, Zsolt
Replies (2)
RE: Compiling firmware - Added by jaap about 10 years ago
This is the error you get if your path to the compiler is not correct.
Firmware/mbed/workspace_tools/private_settings.py should contain something like:
GCC_ARM_PATH = "/home/jaap/gcc-arm-none-eabi-4_8-2014q2/bin/"
If you're running a 64-bit Linux, it might be you need to install i386 libc:
apt-get install libc6:i386
Jaap
RE: Compiling firmware - Added by minczer about 10 years ago
Thanks Jaap!
the path was wrong at private_settings
Regards
Zsolt