From 56ee94f1848de7312d3df8d45aa693cc17c97fb7 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Tue, 19 Dec 2017 13:58:35 +0100 Subject: [PATCH] build: compile V8 using system compiler Stop using the copy of clang that is bundled with Google's build tools and start using the compiler that is installed on the buildbots. It stopped working on one of the machines because it looked in the wrong place for system headers and is not representative of how users build Node.js on their systems. PR-URL: https://github.com/nodejs/node/pull/17489 Reviewed-By: Colin Ihrig Reviewed-By: Matteo Collina Reviewed-By: Myles Borins Reviewed-By: Ali Ijaz Sheikh --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 61630e35de3..f2ceb6e0298 100644 --- a/Makefile +++ b/Makefile @@ -30,6 +30,7 @@ ifdef ENABLE_V8_TAP TAP_V8_BENCHMARKS := --junitout $(PWD)/v8-benchmarks-tap.xml endif +V8_BUILD_OPTIONS += GYPFLAGS="-Dclang=0" V8_TEST_OPTIONS = $(V8_EXTRA_TEST_OPTIONS) ifdef DISABLE_V8_I18N V8_BUILD_OPTIONS += i18nsupport=off