From 59ec1878a21d36991bce2de5cc32a8fcb7cdd920 Mon Sep 17 00:00:00 2001
From: Allan Sandfeld Jensen <allan.jensen@qt.io>
Date: Fri, 7 Apr 2017 13:40:08 +0200
Subject: [PATCH] Set gn use_gold based on qmake's use_gold_linker

Avoids adding --use-ld=gold on the link command line when gold linker
has been deselected in Qt.

Change-Id: I2d34cd3043aa24dca1f5f1604c97d8beccb70093
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
---
 src/buildtools/configure_host.pro   | 7 +++++++
 src/buildtools/configure_target.pro | 4 ++++
 2 files changed, 11 insertions(+)

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 " \
 "  } " \
 " } "
 
diff --git a/src/buildtools/configure_target.pro b/src/buildtools/configure_target.pro
index 54841bf51..6ec914dd5 100644
--- a/src/buildtools/configure_target.pro
+++ b/src/buildtools/configure_target.pro
@@ -7,6 +7,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_CONTENTS = \
 "gcc_toolchain(\"target\") {" \
 "  cc = \"$$which($$QMAKE_CC)\" " \
@@ -18,6 +21,7 @@ GN_CONTENTS = \
 "    current_os = \"$$GN_OS\" " \
 "    current_cpu = \"$$GN_CPU\" " \
 "    is_clang = $$GN_CLANG " \
+"    use_gold = $$GN_USE_GOLD " \
 "  } " \
 "}"
 
-- 
GitLab