diff options
author | Drashna Jaelre <drashna@live.com> | 2019-07-09 12:59:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-09 12:59:05 -0700 |
commit | 05a97482e6a6e0b2733dc51b2fa5e7dad1166228 (patch) | |
tree | 492992f92e00a8575c6adbf49985daa49bac1eac /keyboards/handwired/promethium/rules.mk | |
parent | c69060465ea1ce4f77fb69e2dea7cb035f89ba4e (diff) | |
download | qmk_firmware-05a97482e6a6e0b2733dc51b2fa5e7dad1166228.tar.gz qmk_firmware-05a97482e6a6e0b2733dc51b2fa5e7dad1166228.zip |
[Keyboard] Enable LTO on Handwired/Promethium to reduce compiled size (#6227)
Diffstat (limited to 'keyboards/handwired/promethium/rules.mk')
-rw-r--r-- | keyboards/handwired/promethium/rules.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/keyboards/handwired/promethium/rules.mk b/keyboards/handwired/promethium/rules.mk index 21328b7f8e..dab92e52cf 100644 --- a/keyboards/handwired/promethium/rules.mk +++ b/keyboards/handwired/promethium/rules.mk @@ -47,7 +47,7 @@ OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT OPT_DEFS += -DBOOTLOADER_SIZE=4096 # Build Options -# change to "no" to disable the options, or define them in the Makefile in +# change to "no" to disable the options, or define them in the Makefile in # the appropriate keymap folder that will get included automatically # BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) @@ -62,7 +62,7 @@ AUDIO_ENABLE = no # Audio output on port C6 UNICODE_ENABLE = no # Unicode UNICODEMAP_ENABLE = yes BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID -RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. +RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. PS2_MOUSE_ENABLE = yes PS2_USE_INT = yes API_SYSEX_ENABLE = no @@ -76,3 +76,5 @@ SRC += ws2812.c SRC += rgbsps.c SRC += analog.c SRC += matrix.c + +LINK_TIME_OPTIMIZATION_ENABLE = yes |