Unconditionally enable ChibiOS syscalls (#8268)

* Enable syscalls all the time

* fix whitespace
This commit is contained in:
Joel Challis 2020-02-29 22:45:21 +00:00 committed by GitHub
parent cae91510dc
commit 8d9c800da0
Failed to generate hash of commit
2 changed files with 4 additions and 13 deletions

View file

@ -124,7 +124,8 @@ CHIBISRC = $(STARTUPSRC) \
$(PLATFORMSRC) \
$(PLATFORMSRC_CONTRIB) \
$(BOARDSRC) \
$(STREAMSSRC)
$(STREAMSSRC) \
$(CHIBIOS)/os/various/syscalls.c
# Ensure the ASM files are not subjected to LTO -- it'll strip out interrupt handlers otherwise.
QUANTUM_LIB_SRC += $(STARTUPASM) $(PORTASM) $(OSALASM)