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

cpu: cortexm: fix LTO issue for shared vector table (see #5774)

This commit is contained in:
Kaspar Schleiser 2017-10-20 16:07:29 +02:00
parent 2823ba351c
commit 96b1b76ac9

View File

@ -1,7 +1,10 @@
# thread_arch.c's inline assembler breaks when compiling with link time
# optimization. see #5774.
# optimization. see https://github.com/RIOT-OS/RIOT/issues/5774.
SRC_NOLTO += thread_arch.c
# see https://github.com/RIOT-OS/RIOT/issues/5775.
SRC_NOLTO += vectors_cortexm.c
DIRS = periph
include $(RIOTBASE)/Makefile.base