1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/make.cortexm: s/startup.o/vectors.o/

This commit is contained in:
Hauke Petersen 2015-06-03 12:44:44 +02:00
parent c286da8d7f
commit 4b65a07adc

View File

@ -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: