diff options
author | Joel Challis <git@zvecr.com> | 2021-10-28 21:02:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-28 21:02:22 +0100 |
commit | 0c87e2e7025140ca6105b7fec2639c78c3cd8109 (patch) | |
tree | bfe242f1216de578f6acc3ff797af781856b3873 /keyboards/thevankeyboards/minivan | |
parent | 780e763c13052138e4d9ad379c4138c3b2c344a7 (diff) | |
download | qmk_firmware-0c87e2e7025140ca6105b7fec2639c78c3cd8109.tar.gz qmk_firmware-0c87e2e7025140ca6105b7fec2639c78c3cd8109.zip |
Move LTO logic from common.mk (#14973)
Diffstat (limited to 'keyboards/thevankeyboards/minivan')
-rw-r--r-- | keyboards/thevankeyboards/minivan/keymaps/josjoha/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/thevankeyboards/minivan/keymaps/josjoha/config.h b/keyboards/thevankeyboards/minivan/keymaps/josjoha/config.h index 8098422784..9db4d596de 100644 --- a/keyboards/thevankeyboards/minivan/keymaps/josjoha/config.h +++ b/keyboards/thevankeyboards/minivan/keymaps/josjoha/config.h @@ -24,7 +24,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. // place overrides here // Some defines meant to decrease the firmware size. The firmware is otherwise over the maximum (atmega32u4) -//# ifndef LINK_TIME_OPTIMIZATION_ENABLE +//# ifndef LTO_ENABLE //Disable old style macro handling: MACRO() & action_get_macro //# define NO_ACTION_MACRO // This saves 320 bytes //disable calling of action_function() from the fn_actions array (deprecated) @@ -40,7 +40,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. // Attempts to reduce firmware size: - //#define LINK_TIME_OPTIMIZATION_ENABLE // Did not decrease firmware size when tested on 26 Jan 2020 + //#define LTO_ENABLE // Did not decrease firmware size when tested on 26 Jan 2020 //#define NO_DEBUG //disable debugging (already defined) //#define NO_PRINT JJdisable printing/debugging using hid_listen (already defined) //#define NO_ACTION_LAYER //disable layers (obviously need layers) |