diff options
author | Reza Jelveh <reza.jelveh+github@gmail.com> | 2020-12-23 08:44:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-23 11:44:49 +1100 |
commit | fd177582adbd6847bbe620ae1a6ffd7a85370f2d (patch) | |
tree | 64356b740512f96ce9eb39d2e2a484e1c2a330ce /tmk_core | |
parent | dee506c096902316136f11dca2f560a62fd61e53 (diff) | |
download | qmk_firmware-fd177582adbd6847bbe620ae1a6ffd7a85370f2d.tar.gz qmk_firmware-fd177582adbd6847bbe620ae1a6ffd7a85370f2d.zip |
chibios: honor PLATFORMASM in chibios build (#11219)
Diffstat (limited to 'tmk_core')
-rw-r--r-- | tmk_core/chibios.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/chibios.mk b/tmk_core/chibios.mk index e53edccee2..733f2d60fe 100644 --- a/tmk_core/chibios.mk +++ b/tmk_core/chibios.mk @@ -207,7 +207,7 @@ CHIBISRC = $(STARTUPSRC) \ $(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) +QUANTUM_LIB_SRC += $(STARTUPASM) $(PORTASM) $(OSALASM) $(PLATFORMASM) CHIBISRC := $(patsubst $(TOP_DIR)/%,%,$(CHIBISRC)) |