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.mkpre-develop-merge-nov20
parent
3f392c09b6
commit
92385b3fb6
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -1,2 +1,2 @@ |
|||||||
LINK_TIME_OPTIMIZATION_ENABLE = yes
|
LTO_ENABLE = yes
|
||||||
VIA_ENABLE = yes
|
VIA_ENABLE = yes
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -1 +1 @@ |
|||||||
LINK_TIME_OPTIMIZATION_ENABLE = yes
|
LTO_ENABLE = yes
|
||||||
|
@ -1,2 +1,2 @@ |
|||||||
LINK_TIME_OPTIMIZATION_ENABLE = yes
|
LTO_ENABLE = yes
|
||||||
VIA_ENABLE = yes
|
VIA_ENABLE = yes
|
||||||
|
@ -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
|
||||||
|
@ -1,2 +1,2 @@ |
|||||||
VIA_ENABLE = yes
|
VIA_ENABLE = yes
|
||||||
LINK_TIME_OPTIMIZATION_ENABLE = yes
|
LTO_ENABLE = yes
|
||||||
|
@ -1,3 +1,3 @@ |
|||||||
VIA_ENABLE = yes
|
VIA_ENABLE = yes
|
||||||
CONSOLE_ENABLE = yes
|
CONSOLE_ENABLE = yes
|
||||||
LINK_TIME_OPTIMIZATION_ENABLE = yes
|
LTO_ENABLE = yes
|
||||||
|
@ -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
|
||||||
|
@ -1,3 +1,3 @@ |
|||||||
VIA_ENABLE = yes
|
VIA_ENABLE = yes
|
||||||
LINK_TIME_OPTIMIZATION_ENABLE = yes
|
LTO_ENABLE = yes
|
||||||
RGBLIGHT_ENABLE = yes
|
RGBLIGHT_ENABLE = yes
|
||||||
|
@ -1,2 +1,2 @@ |
|||||||
OLED_DRIVER_ENABLE = yes
|
OLED_DRIVER_ENABLE = yes
|
||||||
LINK_TIME_OPTIMIZATION_ENABLE = yes
|
LTO_ENABLE = yes
|
||||||
|
@ -1,2 +1,2 @@ |
|||||||
MOUSEKEY_ENABLE = no
|
MOUSEKEY_ENABLE = no
|
||||||
LINK_TIME_OPTIMIZATION_ENABLE = yes
|
LTO_ENABLE = yes
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in new issue