You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am trying to compile example project but i am having make file error. arm-none-eabi-objcopy -O binary "DW3000_API_CubeMX.elf" "DW3000_API_CubeMX.bin" arm-none-eabi-size "DW3000_API_CubeMX.bin" arm-none-eabi-size: DW3000_API_CubeMX.bin: file format not recognized make[1]: *** [makefile:135: post-build] Error 3 make: *** [makefile:102: all] Error 2 "make all" terminated with exit code 2. Build might be incomplete.
The text was updated successfully, but these errors were encountered:
arm-none-eabi-size does not work on binaries. It takes an object file as input and lists the section sizes.
try:
arm-none-eabi-size "DW3000_API_CubeMX.elf"
Hi,
I am trying to compile example project but i am having make file error.
arm-none-eabi-objcopy -O binary "DW3000_API_CubeMX.elf" "DW3000_API_CubeMX.bin" arm-none-eabi-size "DW3000_API_CubeMX.bin" arm-none-eabi-size: DW3000_API_CubeMX.bin: file format not recognized make[1]: *** [makefile:135: post-build] Error 3 make: *** [makefile:102: all] Error 2 "make all" terminated with exit code 2. Build might be incomplete.
The text was updated successfully, but these errors were encountered: