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
Describe the bug
Our device has a custom bootloader and thus needs the ability to modify "MBED_APP_START" and "MBED_APP_SIZE" definitions in the linker script.
Using mbed studio 1.4.1 this worked when adding
"target.mbed_app_start" : "0x2e000",
to the mbed_app.json target overrides section.
but when using mbed-tools the linker script in cmake_build/<our custom target>/develop/GCC_ARM/mbed-os/targets/TARGET_<vendor>/TARGET_<family>/mbed-<family>.link_script.ld begins with
to the CMakeListst.txt in app folder makes no diference.
To Reproduce
Have target with preproccesing directives in the linker script and attempt to compile using mbed-tools. Verify that the linker script hasn't been modified.
Expected behavior
Linker script preproccessing directives should be replaced with correct values.
Desktop (please complete the following information):
OS: Windows 10
Mbed (please complete the following information):
Mbed CLI 2 Version: 7.15.0
The text was updated successfully, but these errors were encountered:
Describe the bug
Our device has a custom bootloader and thus needs the ability to modify "MBED_APP_START" and "MBED_APP_SIZE" definitions in the linker script.
Using mbed studio 1.4.1 this worked when adding
to the
mbed_app.json
target overrides section.but when using mbed-tools the linker script in
cmake_build/<our custom target>/develop/GCC_ARM/mbed-os/targets/TARGET_<vendor>/TARGET_<family>/mbed-<family>.link_script.ld
begins withSeemingly no preprocessing has been done. Adding
to the CMakeListst.txt in app folder makes no diference.
To Reproduce
Have target with preproccesing directives in the linker script and attempt to compile using mbed-tools. Verify that the linker script hasn't been modified.
Expected behavior
Linker script preproccessing directives should be replaced with correct values.
Desktop (please complete the following information):
Mbed (please complete the following information):
The text was updated successfully, but these errors were encountered: