Better handle LTO_ENABLE (#9832)

* Better handle LTO_ENABLE

Especially when calling from command line

* Replace LINK_TIME_OPTIMIZATION_ENABLE with LTO_ENABLE

* Remove long for LTO from show_options.mk
master
Drashna Jaelre 2020-08-22 01:21:06 -07:00 committed by James Young
parent 3f392c09b6
commit 92385b3fb6
79 changed files with 85 additions and 99 deletions

View File

@ -324,11 +324,9 @@ This is a [make](https://www.gnu.org/software/make/manual/make.html) file that i
``` ```
* `LAYOUTS` * `LAYOUTS`
* A list of [layouts](feature_layouts.md) this keyboard supports. * A list of [layouts](feature_layouts.md) this keyboard supports.
* `LINK_TIME_OPTIMIZATION_ENABLE` * `LTO_ENABLE`
* Enables Link Time Optimization (LTO) when compiling the keyboard. This makes the process take longer, but it can significantly reduce the compiled size (and since the firmware is small, the added time is not noticeable). * Enables Link Time Optimization (LTO) when compiling the keyboard. This makes the process take longer, but it can significantly reduce the compiled size (and since the firmware is small, the added time is not noticeable).
However, this will automatically disable the legacy TMK Macros and Functions features, as these break when LTO is enabled. It does this by automatically defining `NO_ACTION_MACRO` and `NO_ACTION_FUNCTION`. (Note: This does not affect QMK [Macros](feature_macros.md) and [Layers](feature_layers.md).) However, this will automatically disable the legacy TMK Macros and Functions features, as these break when LTO is enabled. It does this by automatically defining `NO_ACTION_MACRO` and `NO_ACTION_FUNCTION`. (Note: This does not affect QMK [Macros](feature_macros.md) and [Layers](feature_layers.md).)
* `LTO_ENABLE`
* Has the same meaning as `LINK_TIME_OPTIMIZATION_ENABLE`. You can use `LTO_ENABLE` instead of `LINK_TIME_OPTIMIZATION_ENABLE`.
## AVR MCU Options ## AVR MCU Options
* `MCU = atmega32u4` * `MCU = atmega32u4`

View File

@ -322,11 +322,9 @@ QMK での全ての利用可能な設定にはデフォルトがあります。
``` ```
* `LAYOUTS` * `LAYOUTS`
* このキーボードがサポートする[レイアウト](ja/feature_layouts.md)のリスト * このキーボードがサポートする[レイアウト](ja/feature_layouts.md)のリスト
* `LINK_TIME_OPTIMIZATION_ENABLE` * `LTO_ENABLE`
* キーボードをコンパイルする時に、Link Time Optimization (LTO) を有効にします。これは処理に時間が掛かりますが、コンパイルされたサイズを大幅に減らします (そして、ファームウェアが小さいため、追加の時間は分からないくらいです)。 * キーボードをコンパイルする時に、Link Time Optimization (LTO) を有効にします。これは処理に時間が掛かりますが、コンパイルされたサイズを大幅に減らします (そして、ファームウェアが小さいため、追加の時間は分からないくらいです)。
ただし、LTO が有効な場合、古い TMK のマクロと関数の機能が壊れるため、自動的にこれらの機能を無効にします。これは `NO_ACTION_MACRO``NO_ACTION_FUNCTION` を自動的に定義することで行われます。(メモ: これは QMK の [マクロ](ja/feature_macros.md) と [レイヤー](ja/feature_layers.md) には影響を与えません。) ただし、LTO が有効な場合、古い TMK のマクロと関数の機能が壊れるため、自動的にこれらの機能を無効にします。これは `NO_ACTION_MACRO``NO_ACTION_FUNCTION` を自動的に定義することで行われます。(メモ: これは QMK の [マクロ](ja/feature_macros.md) と [レイヤー](ja/feature_layers.md) には影響を与えません。)
* `LTO_ENABLE`
* LINK_TIME_OPTIMIZATION_ENABLE と同じ意味です。`LINK_TIME_OPTIMIZATION_ENABLE` の代わりに `LTO_ENABLE` を使うことができます。
## AVR MCU オプション ## AVR MCU オプション
* `MCU = atmega32u4` * `MCU = atmega32u4`

View File

@ -14,4 +14,4 @@ BOOTLOADER = caterina
RGBLIGHT_ENABLE = yes RGBLIGHT_ENABLE = yes
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -18,4 +18,4 @@ CONSOLE_ENABLE = yes
RGBLIGHT_ENABLE = no RGBLIGHT_ENABLE = no
ENCODER_ENABLE = yes ENCODER_ENABLE = yes
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -31,7 +31,7 @@ BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
AUDIO_ENABLE = no # Audio output on port C6 AUDIO_ENABLE = no # Audio output on port C6
FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
RGB_MATRIX_ENABLE = WS2812 RGB_MATRIX_ENABLE = WS2812
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
# partially generated by KBFirmware JSON to QMK Parser # partially generated by KBFirmware JSON to QMK Parser
# https://noroadsleft.github.io/kbf_qmk_converter/ # https://noroadsleft.github.io/kbf_qmk_converter/

View File

@ -1,4 +1,4 @@
# rules.mk overrides to enable VIA # rules.mk overrides to enable VIA
VIA_ENABLE = yes VIA_ENABLE = yes
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -26,4 +26,4 @@ UNICODE_ENABLE = no # Unicode
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
AUDIO_ENABLE = yes # Audio output on port C6 AUDIO_ENABLE = yes # Audio output on port C6
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -19,6 +19,6 @@ EXTRAKEY_ENABLE = yes # Used for audio control and system control keys
COMBO_ENABLE = yes # Used to allow chording of keys to trigger an action COMBO_ENABLE = yes # Used to allow chording of keys to trigger an action
TAP_DANCE_ENABLE = yes # Used to allow multiple taps of a key to perform different actions TAP_DANCE_ENABLE = yes # Used to allow multiple taps of a key to perform different actions
LINK_TIME_OPTIMIZATION_ENABLE = yes # Reduces the compiled firmware size LTO_ENABLE = yes # Reduces the compiled firmware size
SRC += combo.c tap_dance.c SRC += combo.c tap_dance.c

View File

@ -1,7 +1,7 @@
RGB_MATRIX_ENABLE = WS2812 RGB_MATRIX_ENABLE = WS2812
MOUSEKEY_ENABLE = no MOUSEKEY_ENABLE = no
OLED_DRIVER_ENABLE = yes OLED_DRIVER_ENABLE = yes
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend

View File

@ -1,5 +1,5 @@
#This enables Link Time Optimization.This can save a good chunk of space(several KB for me), but the macro and function... functions cause it to error out. #This enables Link Time Optimization.This can save a good chunk of space(several KB for me), but the macro and function... functions cause it to error out.
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
#Build Options #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

View File

@ -1,2 +1,2 @@
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
VIA_ENABLE = yes VIA_ENABLE = yes

View File

@ -1,5 +1,4 @@
NKRO_ENABLE = yes # USB Nkey Rollover NKRO_ENABLE = yes # USB Nkey Rollover
# VELOCIKEY_ENABLE = yes # VELOCIKEY_ENABLE = yes
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -2,5 +2,4 @@ NKRO_ENABLE = yes # USB Nkey Rollover
VELOCIKEY_ENABLE = yes VELOCIKEY_ENABLE = yes
# AUTO_SHIFT_ENABLE = yes # Auto Shift # AUTO_SHIFT_ENABLE = yes # Auto Shift
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -2,5 +2,4 @@ NKRO_ENABLE = yes # USB Nkey Rollover
AUTO_SHIFT_ENABLE = yes # Auto Shift AUTO_SHIFT_ENABLE = yes # Auto Shift
# VELOCIKEY_ENABLE = yes # VELOCIKEY_ENABLE = yes
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -1,7 +1,7 @@
# Set any rules.mk overrides for your specific keymap here. # Set any rules.mk overrides for your specific keymap here.
# See rules at https://docs.qmk.fm/#/config_options?id=the-rulesmk-file # See rules at https://docs.qmk.fm/#/config_options?id=the-rulesmk-file
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
TAP_DANCE_ENABLE = yes TAP_DANCE_ENABLE = yes
MOUSEKEY_ENABLE = yes # Mouse keys(+4700b). MOUSEKEY_ENABLE = yes # Mouse keys(+4700b).

View File

@ -1,6 +1,6 @@
# Set any rules.mk overrides for your specific keymap here. # Set any rules.mk overrides for your specific keymap here.
# See rules at https://docs.qmk.fm/#/config_options?id=the-rulesmk-file # See rules at https://docs.qmk.fm/#/config_options?id=the-rulesmk-file
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
COMMAND_ENABLE = no COMMAND_ENABLE = no
RGBLIGHT_ENABLE = no RGBLIGHT_ENABLE = no
TAP_DANCE_ENABLE=yes TAP_DANCE_ENABLE=yes

View File

@ -30,5 +30,4 @@ UNICODE_ENABLE = no # Unicode
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
AUDIO_ENABLE = no # Audio output on port C6 AUDIO_ENABLE = no # Audio output on port C6
FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -32,7 +32,7 @@ AUDIO_ENABLE = no # Audio output on port C6
FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
HD44780_ENABLE = no # Enable support for HD44780 based LCDs HD44780_ENABLE = no # Enable support for HD44780 based LCDs
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
LAYOUTS = 65_ansi_blocker LAYOUTS = 65_ansi_blocker

View File

@ -32,7 +32,7 @@ AUDIO_ENABLE = no # Audio output on port C6
FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
HD44780_ENABLE = no # Enable support for HD44780 based LCDs HD44780_ENABLE = no # Enable support for HD44780 based LCDs
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
LAYOUTS = 65_ansi_blocker LAYOUTS = 65_ansi_blocker

View File

@ -45,4 +45,4 @@ SRC += rgbsps.c
SRC += analog.c SRC += analog.c
SRC += matrix.c SRC += matrix.c
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -7,7 +7,7 @@
# #
EXTRAKEY_ENABLE = yes # Audio control and System control(+450) EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
AUDIO_ENABLE = yes # Audio output on port B5 AUDIO_ENABLE = yes # Audio output on port B5
LINK_TIME_OPTIMIZATION_ENABLE = no # if firmware size over limit, try this option LTO_ENABLE = no # if firmware size over limit, try this option
# Helix Spacific Build Options # Helix Spacific Build Options
# you can uncomment and edit follows 6 Variables # you can uncomment and edit follows 6 Variables

View File

@ -7,7 +7,7 @@
# #
EXTRAKEY_ENABLE = yes # Audio control and System control EXTRAKEY_ENABLE = yes # Audio control and System control
AUDIO_ENABLE = yes # Audio output on port B5 AUDIO_ENABLE = yes # Audio output on port B5
LINK_TIME_OPTIMIZATION_ENABLE = no # if firmware size over limit, try this option LTO_ENABLE = no # if firmware size over limit, try this option
# Helix Spacific Build Options # Helix Spacific Build Options
# you can uncomment and edit follows 6 Variables # you can uncomment and edit follows 6 Variables

View File

@ -7,7 +7,7 @@
# #
EXTRAKEY_ENABLE = yes # Audio control and System control(+450) EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
AUDIO_ENABLE = yes # Audio output on port B5 AUDIO_ENABLE = yes # Audio output on port B5
LINK_TIME_OPTIMIZATION_ENABLE = no # if firmware size over limit, try this option LTO_ENABLE = no # if firmware size over limit, try this option
# Helix Spacific Build Options # Helix Spacific Build Options
# you can uncomment and edit follows 6 Variables # you can uncomment and edit follows 6 Variables

View File

@ -106,10 +106,10 @@ endif
ifeq ($(strip $(AUDIO_ENABLE)),yes) ifeq ($(strip $(AUDIO_ENABLE)),yes)
ifeq ($(strip $(RGBLIGHT_ENABLE)),yes) ifeq ($(strip $(RGBLIGHT_ENABLE)),yes)
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
endif endif
ifeq ($(strip $(OLED_ENABLE)),yes) ifeq ($(strip $(OLED_ENABLE)),yes)
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
endif endif
endif endif
@ -120,7 +120,7 @@ ifneq ($(strip $(SHOW_HELIX_OPTIONS)),)
$(info -- OLED_DRIVER_ENABLE = $(OLED_DRIVER_ENABLE)) $(info -- OLED_DRIVER_ENABLE = $(OLED_DRIVER_ENABLE))
$(info -- CONSOLE_ENABLE = $(CONSOLE_ENABLE)) $(info -- CONSOLE_ENABLE = $(CONSOLE_ENABLE))
$(info -- OPT_DEFS = $(OPT_DEFS)) $(info -- OPT_DEFS = $(OPT_DEFS))
$(info -- LINK_TIME_OPTIMIZATION_ENABLE = $(LINK_TIME_OPTIMIZATION_ENABLE)) $(info -- LTO_ENABLE = $(LTO_ENABLE))
$(info ) $(info )
endif endif
endif endif

View File

@ -5,7 +5,7 @@
# See TOP/keyboards/helix/rules.mk for a list of options that can be set. # See TOP/keyboards/helix/rules.mk for a list of options that can be set.
# See TOP/docs/config_options.md for more information. # See TOP/docs/config_options.md for more information.
# #
LINK_TIME_OPTIMIZATION_ENABLE = no # if firmware size over limit, try this option LTO_ENABLE = no # if firmware size over limit, try this option
# Helix Spacific Build Options # Helix Spacific Build Options
# you can uncomment and edit follows 7 Variables # you can uncomment and edit follows 7 Variables

View File

@ -5,7 +5,7 @@
# See TOP/keyboards/helix/rules.mk for a list of options that can be set. # See TOP/keyboards/helix/rules.mk for a list of options that can be set.
# See TOP/docs/config_options.md for more information. # See TOP/docs/config_options.md for more information.
# #
LINK_TIME_OPTIMIZATION_ENABLE = no # if firmware size over limit, try this option LTO_ENABLE = no # if firmware size over limit, try this option
TAP_DANCE_ENABLE = yes TAP_DANCE_ENABLE = yes
# Helix Spacific Build Options # Helix Spacific Build Options

View File

@ -11,7 +11,7 @@
# yes, no +1500 # yes, no +1500
# yes, yes +3200 # yes, yes +3200
# no, yes +400 # no, yes +400
LINK_TIME_OPTIMIZATION_ENABLE = no # if firmware size over limit, try this option LTO_ENABLE = no # if firmware size over limit, try this option
# Helix Spacific Build Options # Helix Spacific Build Options
# you can uncomment and edit follows 7 Variables # you can uncomment and edit follows 7 Variables

View File

@ -5,7 +5,7 @@
# See TOP/keyboards/helix/rules.mk for a list of options that can be set. # See TOP/keyboards/helix/rules.mk for a list of options that can be set.
# See TOP/docs/config_options.md for more information. # See TOP/docs/config_options.md for more information.
# #
LINK_TIME_OPTIMIZATION_ENABLE = no # if firmware size over limit, try this option LTO_ENABLE = no # if firmware size over limit, try this option
# Helix Spacific Build Options # Helix Spacific Build Options
# you can uncomment and edit follows 7 Variables # you can uncomment and edit follows 7 Variables

View File

@ -5,7 +5,7 @@
# See TOP/keyboards/helix/rules.mk for a list of options that can be set. # See TOP/keyboards/helix/rules.mk for a list of options that can be set.
# See TOP/docs/config_options.md for more information. # See TOP/docs/config_options.md for more information.
# #
LINK_TIME_OPTIMIZATION_ENABLE = no # if firmware size over limit, try this option LTO_ENABLE = no # if firmware size over limit, try this option
# Helix Spacific Build Options # Helix Spacific Build Options
# you can uncomment and edit follows 7 Variables # you can uncomment and edit follows 7 Variables

View File

@ -5,7 +5,7 @@
# See TOP/keyboards/helix/rules.mk for a list of options that can be set. # See TOP/keyboards/helix/rules.mk for a list of options that can be set.
# See TOP/docs/config_options.md for more information. # See TOP/docs/config_options.md for more information.
# #
LINK_TIME_OPTIMIZATION_ENABLE = no # if firmware size over limit, try this option LTO_ENABLE = no # if firmware size over limit, try this option
# Helix Spacific Build Options # Helix Spacific Build Options
# you can uncomment and edit follows 7 Variables # you can uncomment and edit follows 7 Variables

View File

@ -5,7 +5,7 @@
# See TOP/keyboards/helix/rules.mk for a list of options that can be set. # See TOP/keyboards/helix/rules.mk for a list of options that can be set.
# See TOP/docs/config_options.md for more information. # See TOP/docs/config_options.md for more information.
# #
LINK_TIME_OPTIMIZATION_ENABLE = no # if firmware size over limit, try this option LTO_ENABLE = no # if firmware size over limit, try this option
# Helix Spacific Build Options # Helix Spacific Build Options
# you can uncomment and edit follows 7 Variables # you can uncomment and edit follows 7 Variables

View File

@ -5,7 +5,7 @@
# See TOP/keyboards/helix/rules.mk for a list of options that can be set. # See TOP/keyboards/helix/rules.mk for a list of options that can be set.
# See TOP/docs/config_options.md for more information. # See TOP/docs/config_options.md for more information.
# #
LINK_TIME_OPTIMIZATION_ENABLE = no # if firmware size over limit, try this option LTO_ENABLE = no # if firmware size over limit, try this option
# Helix Spacific Build Options # Helix Spacific Build Options
# you can uncomment and edit follows 7 Variables # you can uncomment and edit follows 7 Variables

View File

@ -119,7 +119,7 @@ ifneq ($(strip $(SHOW_HELIX_OPTIONS)),)
$(info -- OLED_DRIVER_ENABLE = $(OLED_DRIVER_ENABLE)) $(info -- OLED_DRIVER_ENABLE = $(OLED_DRIVER_ENABLE))
$(info -- CONSOLE_ENABLE = $(CONSOLE_ENABLE)) $(info -- CONSOLE_ENABLE = $(CONSOLE_ENABLE))
$(info -- OPT_DEFS = $(OPT_DEFS)) $(info -- OPT_DEFS = $(OPT_DEFS))
$(info -- LINK_TIME_OPTIMIZATION_ENABLE = $(LINK_TIME_OPTIMIZATION_ENABLE)) $(info -- LTO_ENABLE = $(LTO_ENABLE))
$(info ) $(info )
endif endif
endif endif

View File

@ -30,4 +30,4 @@ UNICODE_ENABLE = no # Unicode
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
AUDIO_ENABLE = no # Audio output on port C6 AUDIO_ENABLE = no # Audio output on port C6
FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -1 +1 @@
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -1,2 +1,2 @@
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
VIA_ENABLE = yes VIA_ENABLE = yes

View File

@ -1,6 +1,6 @@
# https://github.com/qmk/qmk_firmware/issues/3448#issuecomment-406636125 # https://github.com/qmk/qmk_firmware/issues/3448#issuecomment-406636125
# EXTRAFLAGS += -flto # EXTRAFLAGS += -flto
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
MOUSEKEY_ENABLE = no # Mouse keys MOUSEKEY_ENABLE = no # Mouse keys
# COMMAND_ENABLE = no # Commands for debug and configuration # COMMAND_ENABLE = no # Commands for debug and configuration

View File

@ -1,5 +1,5 @@
VIA_ENABLE = yes VIA_ENABLE = yes
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
MOUSEKEY_ENABLE = yes MOUSEKEY_ENABLE = yes
CONSOLE_ENABLE = yes CONSOLE_ENABLE = yes
COMMAND_ENABLE = no COMMAND_ENABLE = no

View File

@ -4,6 +4,6 @@ RGBLIGHT_ENABLE = yes # rgb leds underlight
ENCODER_ENABLE = yes # rotary knob ENCODER_ENABLE = yes # rotary knob
# Some extra stuff to make firmware smaller. # Some extra stuff to make firmware smaller.
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
CONSOLE_ENABLE = no CONSOLE_ENABLE = no
COMMAND_ENABLE = no COMMAND_ENABLE = no

View File

@ -1,2 +1,2 @@
VIA_ENABLE = yes VIA_ENABLE = yes
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -1,4 +1,4 @@
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
RGBLIGHT_ENABLE = yes RGBLIGHT_ENABLE = yes
EXTRAKEY_ENABLE = yes EXTRAKEY_ENABLE = yes
AUDIO_ENABLE = yes AUDIO_ENABLE = yes

View File

@ -1,3 +1,3 @@
VIA_ENABLE = yes VIA_ENABLE = yes
CONSOLE_ENABLE = yes CONSOLE_ENABLE = yes
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -1,6 +1,6 @@
OLED_DRIVER_ENABLE = yes # Enables the use of OLED displays OLED_DRIVER_ENABLE = yes # Enables the use of OLED displays
ENCODER_ENABLE = yes # Enables the use of one or more encoders ENCODER_ENABLE = yes # Enables the use of one or more encoders
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
SRC += oled.c SRC += oled.c

View File

@ -31,6 +31,6 @@ AUDIO_ENABLE = no # Audio output on port C6
FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
HD44780_ENABLE = no # Enable support for HD44780 based LCDs HD44780_ENABLE = no # Enable support for HD44780 based LCDs
SPLIT_KEYBOARD = yes # Split common SPLIT_KEYBOARD = yes # Split common
LINK_TIME_OPTIMIZATION_ENABLE =yes LTO_ENABLE = yes
DEFAULT_FOLDER = kyria/rev1 DEFAULT_FOLDER = kyria/rev1

View File

@ -1,3 +1,3 @@
VIA_ENABLE = yes VIA_ENABLE = yes
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
RGBLIGHT_ENABLE = yes RGBLIGHT_ENABLE = yes

View File

@ -1,2 +1,2 @@
OLED_DRIVER_ENABLE = yes OLED_DRIVER_ENABLE = yes
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -1,2 +1,2 @@
MOUSEKEY_ENABLE = no MOUSEKEY_ENABLE = no
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -1,6 +1,6 @@
SRC += muse.c SRC += muse.c
# Set any rules.mk overrides for your specific keymap here. # Set any rules.mk overrides for your specific keymap here.
# See rules at https://docs.qmk.fm/#/config_options?id=the-rulesmk-file # See rules at https://docs.qmk.fm/#/config_options?id=the-rulesmk-file
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
COMMAND_ENABLE = no COMMAND_ENABLE = no
MOUSEKEY_ENABLE = no MOUSEKEY_ENABLE = no

View File

@ -1,7 +1,7 @@
AUTO_SHIFT_ENABLE = yes AUTO_SHIFT_ENABLE = yes
AUTO_SHIFT_MODIFIERS = yes AUTO_SHIFT_MODIFIERS = yes
UNICODE_ENABLE = yes UNICODE_ENABLE = yes
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
ifeq ($(strip $(KEYBOARD)), planck/rev5) ifeq ($(strip $(KEYBOARD)), planck/rev5)
BACKLIGHT_ENABLE = yes BACKLIGHT_ENABLE = yes

View File

@ -1,7 +1,7 @@
SRC += muse.c SRC += muse.c
# Set any rules.mk overrides for your specific keymap here. # Set any rules.mk overrides for your specific keymap here.
# See rules at https://docs.qmk.fm/#/config_options?id=the-rulesmk-file # See rules at https://docs.qmk.fm/#/config_options?id=the-rulesmk-file
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
COMMAND_ENABLE = no COMMAND_ENABLE = no
MOUSEKEY_ENABLE = no MOUSEKEY_ENABLE = no
TAP_DANCE_ENABLE=yes TAP_DANCE_ENABLE=yes

View File

@ -34,4 +34,4 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
LAYOUTS = ortho_5x12 LAYOUTS = ortho_5x12
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -34,4 +34,4 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
LAYOUTS = ortho_5x12 LAYOUTS = ortho_5x12
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -11,11 +11,10 @@ LED_MIRRORED = no # Mirror LEDs across halves (enable DIP 1 on
RGB_MATRIX_ENABLE = WS2812 # Enable per-key coordinate based RGB effects. Do not enable with RGBlight RGB_MATRIX_ENABLE = WS2812 # Enable per-key coordinate based RGB effects. Do not enable with RGBlight
# Userspace implements their own LTO # Userspace implements their own LTO
LINK_TIME_OPTIMIZATION_ENABLE = no LTO_ENABLE = no
# Do not edit past here # Do not edit past here
include keyboards/$(KEYBOARD)/post_rules.mk include keyboards/$(KEYBOARD)/post_rules.mk

View File

@ -29,7 +29,7 @@ IOS_DEVICE_ENABLE = no # Limit max brightness to connect to IOS dev
OLED_DRIVER_ENABLE = no # Enable the OLED Driver OLED_DRIVER_ENABLE = no # Enable the OLED Driver
EXTRA_ENCODERS_ENABLE = no # Enables 3 encoders per side (up from 1, not compatible with OLED_DRIVER_ENABLE) EXTRA_ENCODERS_ENABLE = no # Enables 3 encoders per side (up from 1, not compatible with OLED_DRIVER_ENABLE)
SWAP_HANDS_ENABLE = no # Enable one-hand typing SWAP_HANDS_ENABLE = no # Enable one-hand typing
LINK_TIME_OPTIMIZATION_ENABLE = yes # Enable Link Time Optimizations greatly reducing firmware size by disabling the old Macros and Functions features LTO_ENABLE = yes # Enable Link Time Optimizations greatly reducing firmware size by disabling the old Macros and Functions features
# Special RGB Matrix, OLED, & Encoder Control Menu! # Special RGB Matrix, OLED, & Encoder Control Menu!
RGB_OLED_MENU = no # Enabled by setting this to the encoder index (0-5) you wish to use to control the menu. RGB_OLED_MENU = no # Enabled by setting this to the encoder index (0-5) you wish to use to control the menu.

View File

@ -19,7 +19,7 @@ SWAP_HANDS_ENABLE = no # Enable one-hand typing
ENCODER_ENABLE = yes # Enable rotary encoder ENCODER_ENABLE = yes # Enable rotary encoder
OLED_DRIVER_ENABLE = no # Enable the OLED Driver OLED_DRIVER_ENABLE = no # Enable the OLED Driver
IOS_DEVICE_ENABLE = no # Limit max brightness to connect to IOS device (iPad,iPhone) IOS_DEVICE_ENABLE = no # Limit max brightness to connect to IOS device (iPad,iPhone)
LINK_TIME_OPTIMIZATION_ENABLE = no # Enable optimizations to reduce firmware size. Also disables action macros and functions. LTO_ENABLE = no # Enable optimizations to reduce firmware size. Also disables action macros and functions.
# Do not edit past here # Do not edit past here

View File

@ -19,7 +19,7 @@ SWAP_HANDS_ENABLE = no # Enable one-hand typing
ENCODER_ENABLE = yes # Enable rotary encoder ENCODER_ENABLE = yes # Enable rotary encoder
OLED_DRIVER_ENABLE = no # Enable the OLED Driver OLED_DRIVER_ENABLE = no # Enable the OLED Driver
IOS_DEVICE_ENABLE = no # Limit max brightness to connect to IOS device (iPad,iPhone) IOS_DEVICE_ENABLE = no # Limit max brightness to connect to IOS device (iPad,iPhone)
LINK_TIME_OPTIMIZATION_ENABLE = no # Enable optimizations to reduce firmware size. Also disables action macros and functions. LTO_ENABLE = no # Enable optimizations to reduce firmware size. Also disables action macros and functions.
# Do not edit past here # Do not edit past here

View File

@ -19,7 +19,7 @@ SWAP_HANDS_ENABLE = no # Enable one-hand typing
ENCODER_ENABLE = yes # Enable rotary encoder ENCODER_ENABLE = yes # Enable rotary encoder
OLED_DRIVER_ENABLE = yes # Enable the OLED Driver OLED_DRIVER_ENABLE = yes # Enable the OLED Driver
IOS_DEVICE_ENABLE = no # Limit max brightness to connect to IOS device (iPad,iPhone) IOS_DEVICE_ENABLE = no # Limit max brightness to connect to IOS device (iPad,iPhone)
LINK_TIME_OPTIMIZATION_ENABLE = yes # Enable optimizations to reduce firmware size. Also disables action macros and functions. LTO_ENABLE = yes # Enable optimizations to reduce firmware size. Also disables action macros and functions.
# Do not edit past here # Do not edit past here

View File

@ -19,7 +19,7 @@ SWAP_HANDS_ENABLE = no # Enable one-hand typing
ENCODER_ENABLE = no # Enable rotary encoder ENCODER_ENABLE = no # Enable rotary encoder
OLED_DRIVER_ENABLE = no # Enable the OLED Driver OLED_DRIVER_ENABLE = no # Enable the OLED Driver
IOS_DEVICE_ENABLE = no # Limit max brightness to connect to IOS device (iPad,iPhone) IOS_DEVICE_ENABLE = no # Limit max brightness to connect to IOS device (iPad,iPhone)
LINK_TIME_OPTIMIZATION_ENABLE = no # Enable optimizations to reduce firmware size. Also disables action macros and functions. LTO_ENABLE = no # Enable optimizations to reduce firmware size. Also disables action macros and functions.
# Do not edit past here # Do not edit past here

View File

@ -31,4 +31,4 @@ AUDIO_ENABLE = no # Audio output on port C6
FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
HD44780_ENABLE = no # Enable support for HD44780 based LCDs HD44780_ENABLE = no # Enable support for HD44780 based LCDs
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -5,7 +5,7 @@ MCU = STM32F072
# comment out to disable the options. # comment out to disable the options.
# #
# EXTRAFLAGS+=-flto # EXTRAFLAGS+=-flto
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
BACKLIGHT_ENABLE = no BACKLIGHT_ENABLE = no
BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
## (Note that for BOOTMAGIC on Teensy LC you have to use a custom .ld script.) ## (Note that for BOOTMAGIC on Teensy LC you have to use a custom .ld script.)

View File

@ -5,7 +5,7 @@ MCU = STM32F072
# comment out to disable the options. # comment out to disable the options.
# #
# EXTRAFLAGS+=-flto # EXTRAFLAGS+=-flto
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
BACKLIGHT_ENABLE = no BACKLIGHT_ENABLE = no
BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
## (Note that for BOOTMAGIC on Teensy LC you have to use a custom .ld script.) ## (Note that for BOOTMAGIC on Teensy LC you have to use a custom .ld script.)

View File

@ -32,6 +32,6 @@ BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
AUDIO_ENABLE = no # Audio output on port C6 AUDIO_ENABLE = no # Audio output on port C6
FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
LAYOUTS = 60_ansi 60_iso LAYOUTS = 60_ansi 60_iso

View File

@ -25,4 +25,4 @@ LAYOUTS = ortho_4x12
DEFAULT_FOLDER = vitamins_included/rev2 DEFAULT_FOLDER = vitamins_included/rev2
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes

View File

@ -75,6 +75,6 @@ further optimizations can be done on that side.
/* disable action features */ /* disable action features */
// #define NO_ACTION_ONESHOT // 462 bytes <- this needs to be un-commented out if Link Time Optimization is disabled, otherwise file is too large // #define NO_ACTION_ONESHOT // 462 bytes <- this needs to be un-commented out if Link Time Optimization is disabled, otherwise file is too large
// The two below are implicit since we use LINK_TIME_OPTIMIZATION_ENABLE (in rules.mk) // The two below are implicit since we use LTO_ENABLE (in rules.mk)
// #define NO_ACTION_MACRO // #define NO_ACTION_MACRO
// #define NO_ACTION_FUNCTION // #define NO_ACTION_FUNCTION

View File

@ -27,6 +27,6 @@ RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
SPACE_CADET_ENABLE = no SPACE_CADET_ENABLE = no
# Saves about 5% of space: # Saves about 5% of space:
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
#LAYOUTS = ortho_1x4 #LAYOUTS = ortho_1x4

View File

@ -31,7 +31,7 @@ BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
AUDIO_ENABLE = no # Audio output on port C6 AUDIO_ENABLE = no # Audio output on port C6
FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
HD44780_ENABLE = no # Enable support for HD44780 based LCDs HD44780_ENABLE = no # Enable support for HD44780 based LCDs
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
# custom matrix setup # custom matrix setup
CUSTOM_MATRIX = lite CUSTOM_MATRIX = lite

View File

@ -31,7 +31,7 @@ BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
AUDIO_ENABLE = no # Audio output on port C6 AUDIO_ENABLE = no # Audio output on port C6
FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
HD44780_ENABLE = no # Enable support for HD44780 based LCDs HD44780_ENABLE = no # Enable support for HD44780 based LCDs
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
# custom matrix setup # custom matrix setup
CUSTOM_MATRIX = lite CUSTOM_MATRIX = lite

View File

@ -192,7 +192,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
//#define NO_ACTION_ONESHOT //#define NO_ACTION_ONESHOT
/* disable these deprecated features by default */ /* disable these deprecated features by default */
#ifndef LINK_TIME_OPTIMIZATION_ENABLE #ifndef LTO_ENABLE
#define NO_ACTION_MACRO #define NO_ACTION_MACRO
#define NO_ACTION_FUNCTION #define NO_ACTION_FUNCTION
#endif #endif

View File

@ -82,8 +82,7 @@ OTHER_OPTION_NAMES = \
RGB_MATRIX_KEYPRESSES \ RGB_MATRIX_KEYPRESSES \
LED_MIRRORED \ LED_MIRRORED \
RGBLIGHT_FULL_POWER \ RGBLIGHT_FULL_POWER \
Link_Time_Optimization \ LTO_ENABLE
LINK_TIME_OPTIMIZATION_ENABLE
define NAME_ECHO define NAME_ECHO
@echo " $1 = $($1) # $(origin $1)" @echo " $1 = $($1) # $(origin $1)"

View File

@ -160,16 +160,13 @@ ifeq ($(strip $(SHARED_EP_ENABLE)), yes)
endif endif
ifeq ($(strip $(LTO_ENABLE)), yes) ifeq ($(strip $(LTO_ENABLE)), yes)
LINK_TIME_OPTIMIZATION_ENABLE = yes
endif
ifeq ($(strip $(LINK_TIME_OPTIMIZATION_ENABLE)), yes)
ifeq ($(PLATFORM),CHIBIOS) ifeq ($(PLATFORM),CHIBIOS)
$(info Enabling LTO on ChibiOS-targeting boards is known to have a high likelihood of failure.) $(info Enabling LTO on ChibiOS-targeting boards is known to have a high likelihood of failure.)
$(info If unsure, set LINK_TIME_OPTIMIZATION_ENABLE = no.) $(info If unsure, set LTO_ENABLE = no.)
endif endif
EXTRAFLAGS += -flto EXTRAFLAGS += -flto
TMK_COMMON_DEFS += -DLINK_TIME_OPTIMIZATION_ENABLE TMK_COMMON_DEFS += -DLTO_ENABLE
TMK_COMMON_DEFS += -DLINK_TIME_OPTIMIZATON_ENABLE
endif endif
# Search Path # Search Path

View File

@ -29,7 +29,7 @@ extern "C" {
#endif #endif
/* Disable macro and function features when LTO is enabled, since they break */ /* Disable macro and function features when LTO is enabled, since they break */
#ifdef LINK_TIME_OPTIMIZATION_ENABLE #ifdef LTO_ENABLE
# ifndef NO_ACTION_MACRO # ifndef NO_ACTION_MACRO
# define NO_ACTION_MACRO # define NO_ACTION_MACRO
# endif # endif

View File

@ -180,7 +180,7 @@ static void print_version(void) {
#ifdef NKRO_ENABLE #ifdef NKRO_ENABLE
" NKRO" " NKRO"
#endif #endif
#ifdef LINK_TIME_OPTIMIZATION_ENABLE #ifdef LTO_ENABLE
" LTO" " LTO"
#endif #endif

View File

@ -14,7 +14,7 @@ EXTRAKEY_ENABLE = yes
NKRO_ENABLE = yes NKRO_ENABLE = yes
# Enable link-time optimization to reduce binary size. # Enable link-time optimization to reduce binary size.
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
# Disable unused build options on all keyboards. # Disable unused build options on all keyboards.
COMMAND_ENABLE = no COMMAND_ENABLE = no

View File

@ -10,7 +10,7 @@ SPACE_CADET_ENABLE = no
LEADER_ENABLE = no LEADER_ENABLE = no
DYNAMIC_MACRO_ENABLE = yes DYNAMIC_MACRO_ENABLE = yes
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
ifeq ($(strip $(KEYBOARD)), planck/rev3) ifeq ($(strip $(KEYBOARD)), planck/rev3)
AUDIO_ENABLE = no AUDIO_ENABLE = no
@ -29,4 +29,3 @@ ifeq ($(strip $(KEYBOARD)), planck/light)
BACKLIGHT_ENABLE = no BACKLIGHT_ENABLE = no
RGB_MATRIX_ENABLE = yes RGB_MATRIX_ENABLE = yes
endif endif

View File

@ -4,7 +4,7 @@ SRC += issmirnov.c
# https://www.reddit.com/r/olkb/comments/bmpgjm/programming_help/ # https://www.reddit.com/r/olkb/comments/bmpgjm/programming_help/
# Should shave 2000 bytes # Should shave 2000 bytes
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
# Enable debugging only when needed. # Enable debugging only when needed.
CONSOLE_ENABLE = yes # +400 bytes (hid_listen support) CONSOLE_ENABLE = yes # +400 bytes (hid_listen support)

View File

@ -1,7 +1,7 @@
SRC += kuchosauronad0.c \ SRC += kuchosauronad0.c \
process_records.c process_records.c
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
SPACE_CADET_ENABLE = no SPACE_CADET_ENABLE = no
ifneq ($(strip $(RGBLIGHT_ENABLE)),yes ) ifneq ($(strip $(RGBLIGHT_ENABLE)),yes )
@ -24,7 +24,7 @@ ifeq ($(strip $(LEADER_ENABLE)), yes)
SRC += leader.c SRC += leader.c
endif endif
ifneq ("$(wildcard $(USER_PATH)/secrets.c)","") ifneq ("$(wildcard $(USER_PATH)/secrets.c)","")
SRC += secrets.c SRC += secrets.c
endif endif
ifeq ($(strip $(NO_SECRETS)), yes) ifeq ($(strip $(NO_SECRETS)), yes)

View File

@ -14,6 +14,6 @@ SRC += pvinis.c # add userspace file
## Some extra stuff to make firmware smaller. ## Some extra stuff to make firmware smaller.
# LINK_TIME_OPTIMIZATION_ENABLE = yes # LTO_ENABLE = yes
# CONSOLE_ENABLE = no # CONSOLE_ENABLE = no
# COMMAND_ENABLE = no # COMMAND_ENABLE = no

View File

@ -2,7 +2,7 @@ BOOTMAGIC = lite
DYNAMIC_KEYMAP_ENABLE = no DYNAMIC_KEYMAP_ENABLE = no
CONSOLE_ENABLE = yes CONSOLE_ENABLE = yes
COMMAND_ENABLE = yes COMMAND_ENABLE = yes
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
AUDIO_ENABLE = no AUDIO_ENABLE = no
# only enable audio on specific boards # only enable audio on specific boards

View File

@ -1,7 +1,7 @@
SRC += yet-another-developer.c \ SRC += yet-another-developer.c \
process_records.c process_records.c
LINK_TIME_OPTIMIZATION_ENABLE = yes LTO_ENABLE = yes
SPACE_CADET_ENABLE = no SPACE_CADET_ENABLE = no
ifeq ($(strip $(TAP_DANCE_ENABLE)), yes) ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)