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

cpu: k60: rename vector.c -> vectors.c, add to SRC_NOLTO

This commit is contained in:
Kaspar Schleiser 2016-08-29 17:25:20 +02:00
parent 76fc7a56c9
commit d1198b489d
3 changed files with 4 additions and 1 deletions

View File

@ -4,4 +4,7 @@ MODULE = cpu
# add a list of subdirectories, that should also be build
DIRS = periph $(RIOTCPU)/cortexm_common $(KINETIS_COMMON)
# (file triggers compiler bug. see #5775)
SRC_NOLTO += vectors.c
include $(RIOTBASE)/Makefile.base

View File

@ -19,7 +19,7 @@ export CFLAGS += -DCPU_ARCH_$(ARCH)
export COMMON_STARTUP = $(KINETIS_COMMON)
# add the CPU specific system calls implementations for the linker
export UNDEF += $(BINDIR)cpu/vector.o
export UNDEF += $(BINDIR)cpu/vectors.o
export UNDEF += $(BINDIR)cpu/ssp.o
include $(RIOTCPU)/Makefile.include.cortexm_common