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
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2021-01-27 4:14 PM
MEMORY
{
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 36K
BOOT_FLASH (rx) : ORIGIN = 0x8000000, LENGTH = 12K
APP_FLASH (rx) : ORIGIN = 0x8003000, LENGTH = 52K
}
Labels:
- Labels:
-
STM32CubeIDE
This discussion is locked. Please start a new topic to ask your question.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2021-01-27 5:54 PM
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
