From 4b65a07adc691c574f16a0d8292b56d0fe05bb56 Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Wed, 3 Jun 2015 12:44:44 +0200 Subject: [PATCH] cpu/make.cortexm: s/startup.o/vectors.o/ --- cpu/Makefile.include.cortexm_common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/Makefile.include.cortexm_common b/cpu/Makefile.include.cortexm_common index a430cf7dc5..cf19ddc278 100644 --- a/cpu/Makefile.include.cortexm_common +++ b/cpu/Makefile.include.cortexm_common @@ -33,7 +33,7 @@ export INCLUDES += -I$(RIOTCPU)/$(CPU)/include # Explicitly tell the linker to link the startup code. # Without this the interrupt vectors will not be linked correctly! ifeq ($(COMMON_STARTUP),) -export UNDEF += $(BINDIR)cpu/startup.o +export UNDEF += $(BINDIR)cpu/vectors.o endif # CPU depends on the cortex-m common module, so include it: