Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Side by Side Diff: build/toolchain/toolchain.gni

Issue 2831213006: Enable ThinLTO and LLD for POSIX LTO by default on Linux. (Closed)
Patch Set: Update another comment Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # Toolchain-related configuration that may be needed outside the context of the 5 # Toolchain-related configuration that may be needed outside the context of the
6 # toolchain() rules themselves. 6 # toolchain() rules themselves.
7 7
8 import("//build_overrides/build.gni") 8 import("//build_overrides/build.gni")
9 import("//build/config/chrome_build.gni") 9 import("//build/config/chrome_build.gni")
10 10
11 declare_args() { 11 declare_args() {
12 # Enable Link Time Optimization in optimized builds (output programs run 12 # Enable Link Time Optimization in optimized builds (output programs run
13 # faster, but linking is up to 5-20x slower). 13 # faster, but linking is up to 5-20x slower).
14 # Note: use target_os == "linux" rather than is_linux so that it does not 14 # Note: use target_os == "linux" rather than is_linux so that it does not
15 # apply to host_toolchain when target_os="android". 15 # apply to host_toolchain when target_os="android".
16 allow_posix_link_time_opt = target_os == "linux" && !is_chromeos && 16 allow_posix_link_time_opt = target_os == "linux" && !is_chromeos &&
17 target_cpu == "x64" && is_official_build 17 target_cpu == "x64" && is_official_build
18 18
19 # Set to true to use lld, the LLVM linker. This flag may be used on Windows
20 # with the shipped LLVM toolchain, or on Linux with a self-built top-of-tree
21 # LLVM toolchain (see llvm_force_head_revision in
22 # build/config/compiler/BUILD.gn).
23 use_lld = is_win && host_os != "win"
24
25 # If used with allow_posix_link_time_opt, it enables the experimental support
26 # of ThinLTO that links 3x-10x faster but (as of now) does not have all the
27 # important optimizations such us devirtualization implemented. See also
28 # http://blog.llvm.org/2016/06/thinlto-scalable-and-incremental-lto.html
29 use_thin_lto = false
30
31 # If this is set to true, or if LLVM_FORCE_HEAD_REVISION is set to 1 19 # If this is set to true, or if LLVM_FORCE_HEAD_REVISION is set to 1
32 # in the environment, we use the revision in the llvm repo to determine 20 # in the environment, we use the revision in the llvm repo to determine
33 # the CLANG_REVISION to use, instead of the version hard-coded into 21 # the CLANG_REVISION to use, instead of the version hard-coded into
34 # //tools/clang/scripts/update.py. This should only be used in 22 # //tools/clang/scripts/update.py. This should only be used in
35 # conjunction with setting LLVM_FORCE_HEAD_REVISION in the 23 # conjunction with setting LLVM_FORCE_HEAD_REVISION in the
36 # environment when `gclient runhooks` is run as well. 24 # environment when `gclient runhooks` is run as well.
37 llvm_force_head_revision = false 25 llvm_force_head_revision = false
38 26
39 # Compile with Xcode version of clang instead of hermetic version shipped 27 # Compile with Xcode version of clang instead of hermetic version shipped
40 # with the build. Used on iOS to ship official builds (as they are built 28 # with the build. Used on iOS to ship official builds (as they are built
41 # with the version of clang shipped with Xcode). 29 # with the version of clang shipped with Xcode).
42 use_xcode_clang = is_ios && is_official_build 30 use_xcode_clang = is_ios && is_official_build
43 } 31 }
44 32
45 # The path to the hermetic install of Xcode. Only relevant when 33 # The path to the hermetic install of Xcode. Only relevant when
46 # use_system_xcode = false. 34 # use_system_xcode = false.
47 hermetic_xcode_path = 35 hermetic_xcode_path =
48 rebase_path("//build/${target_os}_files/Xcode.app", "", root_build_dir) 36 rebase_path("//build/${target_os}_files/Xcode.app", "", root_build_dir)
49 37
50 declare_args() { 38 declare_args() {
51 if (is_clang) { 39 if (is_clang) {
52 # Clang compiler version. Clang files are placed at version-dependent paths. 40 # Clang compiler version. Clang files are placed at version-dependent paths.
53 clang_version = "5.0.0" 41 clang_version = "5.0.0"
54 } 42 }
43
44 # Set to true to use lld, the LLVM linker. This flag may be used on Windows
45 # or Linux.
46 use_lld = (is_win && host_os != "win") ||
47 (allow_posix_link_time_opt && target_os == "linux" &&
48 !is_chromeos && target_cpu == "x64")
49
50 # If used with allow_posix_link_time_opt, it enables the support of ThinLTO
51 # that links 3x-10x faster. See also
52 # http://blog.llvm.org/2016/06/thinlto-scalable-and-incremental-lto.html
53 use_thin_lto = allow_posix_link_time_opt && target_os == "linux" &&
54 !is_chromeos && target_cpu == "x64"
55 } 55 }
56 56
57 # Check target_os here instead of is_ios as this file is loaded for secondary 57 # Check target_os here instead of is_ios as this file is loaded for secondary
58 # toolchain (host toolchain in particular) but the argument is the same for 58 # toolchain (host toolchain in particular) but the argument is the same for
59 # all toolchains. 59 # all toolchains.
60 assert(!use_xcode_clang || target_os == "ios", 60 assert(!use_xcode_clang || target_os == "ios",
61 "Using Xcode's clang is only supported in iOS builds") 61 "Using Xcode's clang is only supported in iOS builds")
62 62
63 # Subdirectory within root_out_dir for shared library files. 63 # Subdirectory within root_out_dir for shared library files.
64 # TODO(agrieve): GYP sets this to "lib" for Linux & Android, but this won't work 64 # TODO(agrieve): GYP sets this to "lib" for Linux & Android, but this won't work
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 _tool_wrapper_path = 106 _tool_wrapper_path =
107 rebase_path("//build/toolchain/win/tool_wrapper.py", root_build_dir) 107 rebase_path("//build/toolchain/win/tool_wrapper.py", root_build_dir)
108 108
109 stamp_command = "$python_path $_tool_wrapper_path stamp {{output}}" 109 stamp_command = "$python_path $_tool_wrapper_path stamp {{output}}"
110 copy_command = 110 copy_command =
111 "$python_path $_tool_wrapper_path recursive-mirror {{source}} {{output}}" 111 "$python_path $_tool_wrapper_path recursive-mirror {{source}} {{output}}"
112 } else { 112 } else {
113 stamp_command = "touch {{output}}" 113 stamp_command = "touch {{output}}"
114 copy_command = "ln -f {{source}} {{output}} 2>/dev/null || (rm -rf {{output}} && cp -af {{source}} {{output}})" 114 copy_command = "ln -f {{source}} {{output}} 2>/dev/null || (rm -rf {{output}} && cp -af {{source}} {{output}})"
115 } 115 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698