From f676e06dc1ed625c51fa99fef63e34b9f1c957bc Mon Sep 17 00:00:00 2001 From: Frank Celler Date: Sun, 11 May 2014 21:19:00 +0200 Subject: [PATCH] fixed CXX and LINK --- 3rdParty/Makefile.all-in-one-v8 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3rdParty/Makefile.all-in-one-v8 b/3rdParty/Makefile.all-in-one-v8 index 6172cb380e..d09bd99f78 100644 --- a/3rdParty/Makefile.all-in-one-v8 +++ b/3rdParty/Makefile.all-in-one-v8 @@ -24,12 +24,12 @@ if ENABLE_ARM && CFLAGS="-O2 -g" \ CXXFLAGS="-O2 -g" \ GYP_DEFINES="armv7=0" \ - $(MAKE) library=static strictaliasing=off snapshot=off werror=no hardfp=on @V8_TARGET@ + $(MAKE) CXX=$(CXX) LINK=$(CXX) library=static strictaliasing=off snapshot=off werror=no hardfp=on @V8_TARGET@ else cd @top_srcdir@/3rdParty/V8 \ && CFLAGS="-O2 -g" \ CXXFLAGS="-O2 -g" \ - $(MAKE) library=static strictaliasing=off snapshot=off werror=no @V8_TARGET@ + $(MAKE) CXX=$(CXX) LINK=$(CXX) library=static strictaliasing=off snapshot=off werror=no @V8_TARGET@ endif touch @srcdir@/.v8-build-@TRI_BITS@