From 7c9906713f9746b9d16ab9e63d8125ac1d3493c6 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 4a8e8716b9c8d4..0f6d2ae9644163 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,