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

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

Issue 2333843002: Add use_thin_lto switch to start evaluating ThinLTO. (Closed)
Patch Set: merge -flto and -whole-program-vtables flags Created 4 years, 3 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 | « build/config/compiler/BUILD.gn ('k') | 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/config/chrome_build.gni") 8 import("//build/config/chrome_build.gni")
9 9
10 declare_args() { 10 declare_args() {
11 # Enable Link Time Optimization in optimized builds (output programs run 11 # Enable Link Time Optimization in optimized builds (output programs run
12 # faster, but linking is up to 5-20x slower). 12 # faster, but linking is up to 5-20x slower).
13 # Note: use target_os == "linux" rather than is_linux so that it does not 13 # Note: use target_os == "linux" rather than is_linux so that it does not
14 # apply to host_toolchain when target_os="android". 14 # apply to host_toolchain when target_os="android".
15 allow_posix_link_time_opt = 15 allow_posix_link_time_opt =
16 target_os == "linux" && !is_chromeos && target_cpu == "x64" && 16 target_os == "linux" && !is_chromeos && target_cpu == "x64" &&
17 is_chrome_branded && is_official_build 17 is_chrome_branded && is_official_build
18 18
19 # Set to true to use lld, the LLVM linker. This flag may be used on Windows 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 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 21 # LLVM toolchain (see llvm_force_head_revision in
22 # build/config/compiler/BUILD.gn). 22 # build/config/compiler/BUILD.gn).
23 use_lld = is_win && host_os != "win" 23 use_lld = is_win && host_os != "win"
24 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
25 # If this is set to true, or if LLVM_FORCE_HEAD_REVISION is set to 1 31 # If this is set to true, or if LLVM_FORCE_HEAD_REVISION is set to 1
26 # in the environment, we use the revision in the llvm repo to determine 32 # in the environment, we use the revision in the llvm repo to determine
27 # the CLANG_REVISION to use, instead of the version hard-coded into 33 # the CLANG_REVISION to use, instead of the version hard-coded into
28 # //tools/clang/scripts/update.py. This should only be used in 34 # //tools/clang/scripts/update.py. This should only be used in
29 # conjunction with setting LLVM_FORCE_HEAD_REVISION in the 35 # conjunction with setting LLVM_FORCE_HEAD_REVISION in the
30 # environment when `gclient runhooks` is run as well. 36 # environment when `gclient runhooks` is run as well.
31 llvm_force_head_revision = false 37 llvm_force_head_revision = false
32 38
33 # Compile with Xcode version of clang instead of hermetic version shipped 39 # Compile with Xcode version of clang instead of hermetic version shipped
34 # with the build. Used on iOS to ship official builds (as they are built 40 # with the build. Used on iOS to ship official builds (as they are built
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 _tool_wrapper_path = 101 _tool_wrapper_path =
96 rebase_path("//build/toolchain/win/tool_wrapper.py", root_build_dir) 102 rebase_path("//build/toolchain/win/tool_wrapper.py", root_build_dir)
97 103
98 stamp_command = "$python_path $_tool_wrapper_path stamp {{output}}" 104 stamp_command = "$python_path $_tool_wrapper_path stamp {{output}}"
99 copy_command = 105 copy_command =
100 "$python_path $_tool_wrapper_path recursive-mirror {{source}} {{output}}" 106 "$python_path $_tool_wrapper_path recursive-mirror {{source}} {{output}}"
101 } else { 107 } else {
102 stamp_command = "touch {{output}}" 108 stamp_command = "touch {{output}}"
103 copy_command = "ln -f {{source}} {{output}} 2>/dev/null || (rm -rf {{output}} && cp -af {{source}} {{output}})" 109 copy_command = "ln -f {{source}} {{output}} 2>/dev/null || (rm -rf {{output}} && cp -af {{source}} {{output}})"
104 } 110 }
OLDNEW
« no previous file with comments | « build/config/compiler/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698