diff options
author | Takeshi ISHII <2170248+mtei@users.noreply.github.com> | 2018-08-03 06:16:17 +0900 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-08-02 14:16:17 -0700 |
commit | b29799f8874a86d22b6eca4ce1352f394b276b7a (patch) | |
tree | f3203f1ad68e9f0ea19844a5315f886e93ce79f1 /keyboards/helix/config.h | |
parent | 0a005834624e9b3247bcd48fdc1790df8611ba86 (diff) | |
download | qmk_firmware-b29799f8874a86d22b6eca4ce1352f394b276b7a.tar.gz qmk_firmware-b29799f8874a86d22b6eca4ce1352f394b276b7a.zip |
Keyboard: fixed build break (size overflow) HelixPico with Backlight or Underglow (#3546)
* build break fix for HelixPico
* add customize variable 'Link_Time_Optimization' into rev2 and pico keymaps rules.mk
* "CFLAGS += -flto" change to "EXTRAFLAGS += -flto"
* add USE_Link_Time_Optimization macro
Diffstat (limited to 'keyboards/helix/config.h')
-rw-r--r-- | keyboards/helix/config.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/keyboards/helix/config.h b/keyboards/helix/config.h index 7bd4d26456..fbfbd32804 100644 --- a/keyboards/helix/config.h +++ b/keyboards/helix/config.h @@ -39,4 +39,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. // ./tmk_core // ...... +#ifdef USE_Link_Time_Optimization + // LTO has issues with macros (action_get_macro) and "functions" (fn_actions), + // so just disable them + #define NO_ACTION_MACRO + #define NO_ACTION_FUNCTION + + #define DISABLE_LEADER +#endif // USE_Link_Time_Optimization + #endif /* CONFIG_H */ |