1
0
Fork 0

fixed CXX and LINK

This commit is contained in:
Frank Celler 2014-05-11 21:19:00 +02:00
parent 540130a4b0
commit f676e06dc1
1 changed files with 2 additions and 2 deletions

View File

@ -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@