Skip to main content
cgarland42
Associate III
January 28, 2021
Question

Is it possible to build two programs. Boot and app using STM32CubeIDE. For them use same make and linker files. They would need different *.ioc files

  • January 28, 2021
  • 1 reply
  • 615 views

MEMORY

{

 RAM    (xrw) : ORIGIN = 0x20000000,  LENGTH = 36K

 BOOT_FLASH (rx) : ORIGIN = 0x8000000,  LENGTH = 12K

 APP_FLASH (rx) : ORIGIN = 0x8003000,  LENGTH = 52K

}

This topic has been closed for replies.

1 reply

cgarland42
Associate III
January 28, 2021

I was able to have two build projects, and able to share common files etc..which is great.

But at the end I get:

Error: Cannot find the specified linker script. Check the linker settings in the build configuration.

make[1]: *** [makefile:91: fail-specified-linker-script-missing] Error 2

make[1]: *** Waiting for unfinished jobs....

make: *** [makefile:52: all] Error 2