Browse Source

detect ccache and bail out since v8 doens't like to build with ccache

v0.7.4-release
Jan Lehnardt 16 years ago
committed by Ryan Dahl
parent
commit
9c1034b183
  1. 7
      configure

7
configure

@ -1,5 +1,12 @@
#! /bin/sh #! /bin/sh
# v8 doesn't like ccache
if [ ! -z "`echo $CC | grep ccache`" ]; then
echo "Error: V8 doesn't like cache. Please set your CC env var to 'gcc'"
echo " (ba)sh: export CC=gcc"
exit 1
fi
CUR_DIR=$PWD CUR_DIR=$PWD
#possible relative path #possible relative path

Loading…
Cancel
Save