aboutsummaryrefslogtreecommitdiffstats
path: root/users
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2020-08-22 01:21:06 -0700
committerJames Young <18669334+noroadsleft@users.noreply.github.com>2020-08-29 14:30:02 -0700
commit92385b3fb617326b129609726020453c8949c7f8 (patch)
tree29d881897a59f0b1568bbaf21534c81360ad21e6 /users
parent3f392c09b60d46d9e4a4d3cc150a26294dea4da7 (diff)
downloadfirmware-92385b3fb617326b129609726020453c8949c7f8.tar.gz
firmware-92385b3fb617326b129609726020453c8949c7f8.tar.bz2
firmware-92385b3fb617326b129609726020453c8949c7f8.zip
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
Diffstat (limited to 'users')
-rw-r--r--users/bcat/rules.mk2
-rw-r--r--users/dshields/rules.mk3
-rw-r--r--users/issmirnov/rules.mk2
-rw-r--r--users/kuchosauronad0/rules.mk4
-rw-r--r--users/pvinis/rules.mk2
-rw-r--r--users/yanfali/rules.mk2
-rw-r--r--users/yet-another-developer/rules.mk2
7 files changed, 8 insertions, 9 deletions
diff --git a/users/bcat/rules.mk b/users/bcat/rules.mk
index a595d1f58..f87974ed9 100644
--- a/users/bcat/rules.mk
+++ b/users/bcat/rules.mk
@@ -14,7 +14,7 @@ EXTRAKEY_ENABLE = yes
NKRO_ENABLE = yes
# Enable link-time optimization to reduce binary size.
-LINK_TIME_OPTIMIZATION_ENABLE = yes
+LTO_ENABLE = yes
# Disable unused build options on all keyboards.
COMMAND_ENABLE = no
diff --git a/users/dshields/rules.mk b/users/dshields/rules.mk
index abfbe5e40..462649289 100644
--- a/users/dshields/rules.mk
+++ b/users/dshields/rules.mk
@@ -10,7 +10,7 @@ SPACE_CADET_ENABLE = no
LEADER_ENABLE = no
DYNAMIC_MACRO_ENABLE = yes
-LINK_TIME_OPTIMIZATION_ENABLE = yes
+LTO_ENABLE = yes
ifeq ($(strip $(KEYBOARD)), planck/rev3)
AUDIO_ENABLE = no
@@ -29,4 +29,3 @@ ifeq ($(strip $(KEYBOARD)), planck/light)
BACKLIGHT_ENABLE = no
RGB_MATRIX_ENABLE = yes
endif
-
diff --git a/users/issmirnov/rules.mk b/users/issmirnov/rules.mk
index 096d7b4c0..93ec21b01 100644
--- a/users/issmirnov/rules.mk
+++ b/users/issmirnov/rules.mk
@@ -4,7 +4,7 @@ SRC += issmirnov.c
# https://www.reddit.com/r/olkb/comments/bmpgjm/programming_help/
# Should shave 2000 bytes
-LINK_TIME_OPTIMIZATION_ENABLE = yes
+LTO_ENABLE = yes
# Enable debugging only when needed.
CONSOLE_ENABLE = yes # +400 bytes (hid_listen support)
diff --git a/users/kuchosauronad0/rules.mk b/users/kuchosauronad0/rules.mk
index b844d12c9..dfab85703 100644
--- a/users/kuchosauronad0/rules.mk
+++ b/users/kuchosauronad0/rules.mk
@@ -1,7 +1,7 @@
SRC += kuchosauronad0.c \
process_records.c
-LINK_TIME_OPTIMIZATION_ENABLE = yes
+LTO_ENABLE = yes
SPACE_CADET_ENABLE = no
ifneq ($(strip $(RGBLIGHT_ENABLE)),yes )
@@ -24,7 +24,7 @@ ifeq ($(strip $(LEADER_ENABLE)), yes)
SRC += leader.c
endif
-ifneq ("$(wildcard $(USER_PATH)/secrets.c)","")
+ifneq ("$(wildcard $(USER_PATH)/secrets.c)","")
SRC += secrets.c
endif
ifeq ($(strip $(NO_SECRETS)), yes)
diff --git a/users/pvinis/rules.mk b/users/pvinis/rules.mk
index f6f09e54d..6c7b47399 100644
--- a/users/pvinis/rules.mk
+++ b/users/pvinis/rules.mk
@@ -14,6 +14,6 @@ SRC += pvinis.c # add userspace file
## Some extra stuff to make firmware smaller.
-# LINK_TIME_OPTIMIZATION_ENABLE = yes
+# LTO_ENABLE = yes
# CONSOLE_ENABLE = no
# COMMAND_ENABLE = no
diff --git a/users/yanfali/rules.mk b/users/yanfali/rules.mk
index 456d3bf32..a7208daa2 100644
--- a/users/yanfali/rules.mk
+++ b/users/yanfali/rules.mk
@@ -2,7 +2,7 @@ BOOTMAGIC = lite
DYNAMIC_KEYMAP_ENABLE = no
CONSOLE_ENABLE = yes
COMMAND_ENABLE = yes
-LINK_TIME_OPTIMIZATION_ENABLE = yes
+LTO_ENABLE = yes
AUDIO_ENABLE = no
# only enable audio on specific boards
diff --git a/users/yet-another-developer/rules.mk b/users/yet-another-developer/rules.mk
index 597df6d0b..64cf1f2fc 100644
--- a/users/yet-another-developer/rules.mk
+++ b/users/yet-another-developer/rules.mk
@@ -1,7 +1,7 @@
SRC += yet-another-developer.c \
process_records.c
-LINK_TIME_OPTIMIZATION_ENABLE = yes
+LTO_ENABLE = yes
SPACE_CADET_ENABLE = no
ifeq ($(strip $(TAP_DANCE_ENABLE)), yes)