diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-12-10 14:16:45 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-02-02 12:42:48 -0800 |
commit | 6f532b72c85e38880cf7953098bb91e8f3feb696 (patch) | |
tree | b0bbd5e653904f54b03439e851a092763b4ef87f /docs/markdown/snippets | |
parent | bffc94b08f713cc9916009575664b132aee76bcf (diff) | |
download | meson-6f532b72c85e38880cf7953098bb91e8f3feb696.zip meson-6f532b72c85e38880cf7953098bb91e8f3feb696.tar.gz meson-6f532b72c85e38880cf7953098bb91e8f3feb696.tar.bz2 |
Add support for LLVM's thinLTO
This uses a separate option, b_lto_mode. It works in conjunction with
b_lto_threads.
Fixes #7493
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/lto_mode.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/markdown/snippets/lto_mode.md b/docs/markdown/snippets/lto_mode.md new file mode 100644 index 0000000..c1df066 --- /dev/null +++ b/docs/markdown/snippets/lto_mode.md @@ -0,0 +1,5 @@ +## Support added for LLVM's thinLTO + +A new `b_lto_mode` option has been added, which may be set to `default` or +`thin`. Thin only works for clang, and only with gnu gold, lld variants, or +ld64. |