From 3cdb5063f20887a30101fe21748a4c4583255ce3 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Tue, 26 Apr 2016 11:38:24 +0200 Subject: [PATCH] build: don't compile with -B Turn off the custom toolchain, we don't bundle ld.gold. It's not that useful anyway because it uses a fixed path. For people that do use a custom toolchain, there is the GCC_EXEC_PREFIX environment variable. PR-URL: https://github.com/nodejs/node/pull/6393 Reviewed-By: Anna Henningsen --- common.gypi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common.gypi b/common.gypi index 585b9485884e20..4174e8c3628e28 100644 --- a/common.gypi +++ b/common.gypi @@ -25,6 +25,9 @@ # Don't bake anything extra into the snapshot. 'v8_use_external_startup_data%': 0, + # Don't compile with -B, we don't bundle ld.gold. + 'linux_use_bundled_gold%': 0, + 'conditions': [ ['OS == "win"', { 'os_posix': 0,