Closed martijnvandermarel closed 2 years ago
TARGET_CONFIG_FILE
target_nrf52840.mk
target_nrf52832.mk
make clean
make
cat include/microapp_target_symbols.ld
The values in include/microapp_target_symbols.ld are expected to be updated based on the new TARGET_CONFIG_FILE.
include/microapp_target_symbols.ld
The values in include/microapp_target_symbols.ld are not updated and instead keep their old values.
Current workaround is rm include/microapp_target_symbols.ld, but will look into it. That target should be regenerated when this variable changes.
rm include/microapp_target_symbols.ld
Reproduce bug
TARGET_CONFIG_FILE
in Makefile (e.g., change fromtarget_nrf52840.mk
totarget_nrf52832.mk
)make clean
make
cat include/microapp_target_symbols.ld
Expected behaviour
The values in
include/microapp_target_symbols.ld
are expected to be updated based on the newTARGET_CONFIG_FILE
.Current behaviour
The values in
include/microapp_target_symbols.ld
are not updated and instead keep their old values.