Browse Source

Fiddle with spidermonkey build util. ccache is working yet

master
Jonathan "Duke" Leto 13 years ago
parent
commit
b7c699d59f
  1. 5
      bin/new_spidermonkey_debug

5
bin/new_spidermonkey_debug

@ -4,14 +4,17 @@
if ["$CC" -eq ""]; then
CC=cc
fi
if ["$CXX" -eq ""]; then
CXX=c++
fi
ccache --version
if [ $? -eq 0 ]; then
CC="ccache $CC"
CXX="ccache $CXX"
fi
make clean
rm -rf build-debug
mkdir build-debug
cd build-debug

Loading…
Cancel
Save