Using the current version of the mbed SDK from GitHub and running
build.py I get the following error:
cwr@florin libraries $ python workspace_tools/build.py -m LPC1768 -t GCC_CS
BUILD LIBRARY CMSIS (LPC1768, GCC_CS)
Copy: core_cmInstr.h
Copy: core_cm4_simd.h
Copy: core_cm0plus.h
Copy: core_cm4.h
Copy: core_cmFunc.h
Copy: core_cm3.h
Copy: core_cm0.h
Copy: LPC17xx.h
Copy: system_LPC17xx.h
Copy: cmsis.h
Copy: cmsis_nvic.h
Copy: LPC1768.ld
Assemble: startup_LPC17xx.s
[Errno 2] No such file or directory
Completed in: (0.04)s
Build failures:
- GCC_CS::LPC1768
cwr@florin libraries $
The files are present, but not in the right place:
cwr@florin libraries $ find . -name startup_LPC17\* -print
./libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC176X/TOOLCHAIN_GCC_ARM/startup_LPC17xx.s
./libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC176X/TOOLCHAIN_GCC_CS/startup_LPC17xx.s
./libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC176X/TOOLCHAIN_GCC_CR/startup_LPC17xx.cpp
./libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC176X/TOOLCHAIN_IAR/startup_LPC17xx.s
./libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC176X/TOOLCHAIN_ARM_STD/startup_LPC17xx.s
./libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC176X/TOOLCHAIN_ARM_MICRO/startup_LPC17xx.s
cwr@florin libraries $
Does anyone know to which directory I should move the startup files
so that the assembler can find them?
Thanks - Will
Using the current version of the mbed SDK from GitHub and running build.py I get the following error:
cwr@florin libraries $ python workspace_tools/build.py -m LPC1768 -t GCC_CS
BUILD LIBRARY CMSIS (LPC1768, GCC_CS)
Copy: core_cmInstr.h Copy: core_cm4_simd.h Copy: core_cm0plus.h Copy: core_cm4.h Copy: core_cmFunc.h Copy: core_cm3.h Copy: core_cm0.h Copy: LPC17xx.h Copy: system_LPC17xx.h Copy: cmsis.h Copy: cmsis_nvic.h Copy: LPC1768.ld Assemble: startup_LPC17xx.s [Errno 2] No such file or directory
Completed in: (0.04)s
Build failures:
The files are present, but not in the right place: cwr@florin libraries $ find . -name startup_LPC17\* -print ./libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC176X/TOOLCHAIN_GCC_ARM/startup_LPC17xx.s ./libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC176X/TOOLCHAIN_GCC_CS/startup_LPC17xx.s ./libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC176X/TOOLCHAIN_GCC_CR/startup_LPC17xx.cpp ./libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC176X/TOOLCHAIN_IAR/startup_LPC17xx.s ./libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC176X/TOOLCHAIN_ARM_STD/startup_LPC17xx.s ./libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC176X/TOOLCHAIN_ARM_MICRO/startup_LPC17xx.s cwr@florin libraries $
Does anyone know to which directory I should move the startup files so that the assembler can find them?
Thanks - Will