summaryrefslogtreecommitdiff
path: root/tools/make-v8.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/make-v8.sh')
-rwxr-xr-xtools/make-v8.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/make-v8.sh b/tools/make-v8.sh
index 1a6e175b61..41c5ff76db 100755
--- a/tools/make-v8.sh
+++ b/tools/make-v8.sh
@@ -15,12 +15,15 @@ if [[ "$ARCH" == "s390x" ]] || [[ "$ARCH" == "ppc64le" ]]; then
if [[ X"$CXX" != X ]]; then
CXX_PATH=`which $CXX |grep g++`
fi
+ if [[ X"$CC" != X ]]; then
+ CC_PATH=`which $CC |grep gcc`
+ fi
rm -f "$BUILD_TOOLS/g++"
rm -f "$BUILD_TOOLS/gcc"
fi
if [[ "$ARCH" == "s390x" ]]; then
ln -s $CXX_PATH "$BUILD_TOOLS/g++"
- ln -s $CXX_PATH "$BUILD_TOOLS/gcc"
+ ln -s $CC_PATH "$BUILD_TOOLS/gcc"
g++ --version
export PKG_CONFIG_PATH=$BUILD_TOOLS/pkg-config
gn gen -v out.gn/$BUILD_ARCH_TYPE --args='is_component_build=false is_debug=false use_goma=false goma_dir="None" use_custom_libcxx=false v8_target_cpu="s390x" target_cpu="s390x"'