Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2016-04-26 12:38:24 +0300
committerJeremiah Senkpiel <fishrock123@rocketmail.com>2016-05-04 03:20:31 +0300
commit11e7cc5310f3399ad2b73beba4dcad530aabb326 (patch)
tree8aafe17481011fa2fd01be543c459ce18ca72691 /common.gypi
parent36207c6daf29354916afa6826846044a68498ad4 (diff)
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 <anna@addaleax.net>
Diffstat (limited to 'common.gypi')
-rw-r--r--common.gypi3
1 files changed, 3 insertions, 0 deletions
diff --git a/common.gypi b/common.gypi
index 585b9485884..4174e8c3628 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,