summaryrefslogtreecommitdiffstats
path: root/src/buildtools/configure_host.pro
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtools/configure_host.pro')
-rw-r--r--src/buildtools/configure_host.pro7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/buildtools/configure_host.pro b/src/buildtools/configure_host.pro
index 0e113543d..fd27643ec 100644
--- a/src/buildtools/configure_host.pro
+++ b/src/buildtools/configure_host.pro
@@ -11,6 +11,9 @@ GN_OS = $$gnOS()
clang: GN_CLANG = true
else: GN_CLANG = false
+use_gold_linker: GN_USE_GOLD=true
+else: GN_USE_GOLD=false
+
GN_V8_HOST_CPU = $$GN_HOST_CPU
contains(GN_TARGET_CPU, "arm")|contains(GN_TARGET_CPU, "mips")|contains(GN_TARGET_CPU, "x86") {
# The v8 snapshot need a host that matches bitwidth, so we build makesnapshot to 32-bit variants of host.
@@ -33,6 +36,8 @@ GN_CONTENTS = \
" toolchain_args = { " \
" current_os = \"$$GN_OS\" " \
" current_cpu = \"$$GN_HOST_CPU\" " \
+" is_clang = $$GN_CLANG " \
+" use_gold = $$GN_USE_GOLD " \
" } " \
"}" \
"gcc_toolchain(\"v8_snapshot\") {" \
@@ -45,6 +50,8 @@ GN_CONTENTS = \
" current_os = \"$$GN_OS\" " \
" current_cpu = \"$$GN_V8_HOST_CPU\" " \
" v8_current_cpu = \"$$GN_TARGET_CPU\" " \
+" is_clang = $$GN_CLANG " \
+" use_gold = $$GN_USE_GOLD " \
" } " \
" } "