OLD | NEW |
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 | 19 # 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 | 20 # 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 | 21 # important optimizations such us devirtualization implemented. See also |
28 # http://blog.llvm.org/2016/06/thinlto-scalable-and-incremental-lto.html | 22 # http://blog.llvm.org/2016/06/thinlto-scalable-and-incremental-lto.html |
29 use_thin_lto = false | 23 use_thin_lto = false |
30 | 24 |
31 # If this is set to true, or if LLVM_FORCE_HEAD_REVISION is set to 1 | 25 # 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 | 26 # 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 | 27 # the CLANG_REVISION to use, instead of the version hard-coded into |
34 # //tools/clang/scripts/update.py. This should only be used in | 28 # //tools/clang/scripts/update.py. This should only be used in |
(...skipping 10 matching lines...) Expand all Loading... |
45 # The path to the hermetic install of Xcode. Only relevant when | 39 # The path to the hermetic install of Xcode. Only relevant when |
46 # use_system_xcode = false. | 40 # use_system_xcode = false. |
47 hermetic_xcode_path = | 41 hermetic_xcode_path = |
48 rebase_path("//build/${target_os}_files/Xcode.app", "", root_build_dir) | 42 rebase_path("//build/${target_os}_files/Xcode.app", "", root_build_dir) |
49 | 43 |
50 declare_args() { | 44 declare_args() { |
51 if (is_clang) { | 45 if (is_clang) { |
52 # Clang compiler version. Clang files are placed at version-dependent paths. | 46 # Clang compiler version. Clang files are placed at version-dependent paths. |
53 clang_version = "5.0.0" | 47 clang_version = "5.0.0" |
54 } | 48 } |
| 49 |
| 50 # Set to true to use lld, the LLVM linker. This flag may be used on Windows |
| 51 # or Linux. |
| 52 use_lld = (is_win && host_os != "win") || |
| 53 (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 Loading... |
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 } |
OLD | NEW |