diff --git a/makefiles/arch/cortexm.inc.mk b/makefiles/arch/cortexm.inc.mk index ad8dddfa96abaa3650ae53643d48b80e39962bf3..8c7377c738eb6b8699a8abc84279c7a989d33f3d 100644 --- a/makefiles/arch/cortexm.inc.mk +++ b/makefiles/arch/cortexm.inc.mk @@ -85,8 +85,9 @@ endif # Explicitly tell the linker to link the startup code. # Without this the interrupt vectors will not be linked correctly! +VECTORS_O ?= $(BINDIR)/cpu/vectors.o ifeq ($(COMMON_STARTUP),) -export UNDEF += $(BINDIR)/cpu/vectors.o +export UNDEF += $(VECTORS_O) endif # CPU depends on the cortex-m common module, so include it: