node/configure

26 lines
444 B
Plaintext
Raw Normal View History

#! /bin/sh
2010-10-26 09:17:19 +08:00
# v8 doesn't like ccache
if [ ! -z "`echo $CC | grep ccache`" ]; then
2011-08-27 04:38:45 +08:00
echo "Error: V8 doesn't like ccache. Please set your CC env var to 'gcc'"
echo " (ba)sh: export CC=gcc"
exit 1
fi
2010-10-26 09:17:19 +08:00
if [ -z "$PYTHON" ]; then
PYTHON=python
fi
CUR_DIR=$PWD
#possible relative path
WORKINGDIR=`dirname $0`
cd "$WORKINGDIR"
#abs path
WORKINGDIR=`pwd`
cd "$CUR_DIR"
"$PYTHON" "${WORKINGDIR}/tools/waf-light" --jobs=1 configure $*
exit $?