diff options
author | Joel Challis <git@zvecr.com> | 2020-02-29 22:45:21 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-01 09:45:21 +1100 |
commit | 8d9c800da0cfcf109f264b695123b55282bc52df (patch) | |
tree | dc9d4977a5671fb04949fa8c9b827f8a3e138fa8 /tmk_core/chibios.mk | |
parent | cae91510dc488bf81d8497252d58014353093872 (diff) | |
download | qmk_firmware-8d9c800da0cfcf109f264b695123b55282bc52df.tar.gz |
Unconditionally enable ChibiOS syscalls (#8268)
* Enable syscalls all the time
* fix whitespace
Diffstat (limited to 'tmk_core/chibios.mk')
-rw-r--r-- | tmk_core/chibios.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tmk_core/chibios.mk b/tmk_core/chibios.mk index 73c01c7b4..d447bc13e 100644 --- a/tmk_core/chibios.mk +++ b/tmk_core/chibios.mk @@ -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) |