summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2019-05-02 17:03:42 +0200
committerMechMerlin <30334081+mechmerlin@users.noreply.github.com>2019-05-02 17:03:42 +0200
commit7e655a207e58fb8e5c7d76bd5727558e6b4c8b0c (patch)
tree3fc26c13ac531dbe71d18571e7ede29e5e39fea5 /docs
parent55d37d9fbcd85a49acbf539d751f0003e7b770ed (diff)
downloadqmk_firmware-7e655a207e58fb8e5c7d76bd5727558e6b4c8b0c.tar.gz
qmk_firmware-7e655a207e58fb8e5c7d76bd5727558e6b4c8b0c.tar.xz
Add option to enable LTO easily (#5674)
* Add option to enable LTO easily and disable features that cause compiling errors with LTO * Add documentation about LTO option * Add to show_options
Diffstat (limited to 'docs')
-rw-r--r--docs/config_options.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/config_options.md b/docs/config_options.md
index 8f229a2cb..3ef00394d 100644
--- a/docs/config_options.md
+++ b/docs/config_options.md
@@ -330,6 +330,8 @@ Use these to enable or disable building certain features. The more you have enab
* Forces the keyboard to wait for a USB connection to be established before it starts up
* `NO_USB_STARTUP_CHECK`
* Disables usb suspend check after keyboard startup. Usually the keyboard waits for the host to wake it up before any tasks are performed. This is useful for split keyboards as one half will not get a wakeup call but must send commands to the master.
+* `LINK_TIME_OPTIMIZATION_ENABLE`
+ = Enables Link Time Optimization (`LTO`) when compiling the keyboard. This makes the process take longer, but can significantly reduce the compiled size (and since the firmware is small, the added time is not noticable). However, this will automatically disable the old Macros and Functions features automatically, as these break when `LTO` is enabled. It does this by automatically defining `NO_ACTION_MACRO` and `NO_ACTION_FUNCTION`
## USB Endpoint Limitations