summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReza Jelveh <reza.jelveh+github@gmail.com>2020-12-23 08:44:49 +0800
committerDrashna Jael're <drashna@live.com>2021-01-12 22:46:10 -0800
commit074147a74a99bf594185654c3ad3d8ba2f06ae49 (patch)
tree960e08d0c12b325c209a32e03c0ea1cdf993ffd0
parenteaec0a1bfd22928bf6e679969cd7deeba1c834dc (diff)
chibios: honor PLATFORMASM in chibios build (#11219)
-rw-r--r--tmk_core/chibios.mk2
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))