[PATCH] D88584: [gn build] Support building with ThinLTO
Arthur Eubanks via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 30 09:01:26 PDT 2020
aeubanks created this revision.
aeubanks added reviewers: thakis, hans, rnk.
Herald added subscribers: llvm-commits, dexonsmith, inglorion.
Herald added a project: LLVM.
aeubanks requested review of this revision.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D88584
Files:
llvm/utils/gn/build/BUILD.gn
llvm/utils/gn/build/buildflags.gni
Index: llvm/utils/gn/build/buildflags.gni
===================================================================
--- llvm/utils/gn/build/buildflags.gni
+++ llvm/utils/gn/build/buildflags.gni
@@ -10,16 +10,22 @@
# Whether to build with asan.
use_asan = false
-}
-
-# args that depend on other args must live in a later declare_args() block.
-declare_args() {
- # Whether to build with optimizations.
- is_optimized = !is_debug
# Whether to enable assertions.
llvm_enable_assertions = true
# Whether to enable expensive checks.
llvm_enable_expensive_checks = false
+
+ # Whether to build with ThinLTO.
+ use_thinlto = false
+
+ # Max jobs per ThinLTO link.
+ max_jobs_per_lto_link = 8
+}
+
+# args that depend on other args must live in a later declare_args() block.
+declare_args() {
+ # Whether to build with optimizations.
+ is_optimized = !is_debug
}
Index: llvm/utils/gn/build/BUILD.gn
===================================================================
--- llvm/utils/gn/build/BUILD.gn
+++ llvm/utils/gn/build/BUILD.gn
@@ -256,6 +256,27 @@
cflags += [ "-fsanitize=thread" ]
ldflags += [ "-fsanitize=thread" ]
}
+
+ if (use_thinlto) {
+ assert(is_clang, "ThinLTO only supported on Clang")
+
+ lto_opt_level = 2
+
+ cflags += [ "-flto=thin" ]
+
+ if (host_os == "win") {
+ ldflags += [
+ "/opt:lldlto=" + lto_opt_level,
+ "/opt:lldltojobs=" + max_jobs_per_lto_link,
+ ]
+ } else {
+ ldflags += [
+ "-flto=thin",
+ "-Wl,--thinlto-jobs=" + max_jobs_per_lto_link,
+ "-Wl,--lto-O" + lto_opt_level,
+ ]
+ }
+ }
}
config("no_exceptions") {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D88584.295313.patch
Type: text/x-patch
Size: 1658 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200930/736c32c0/attachment.bin>
More information about the llvm-commits
mailing list