forked from github/server
update submodules, determine number of CPU cores.
This commit is contained in:
parent
b795602b5d
commit
716b1ed498
|
@ -1,10 +1,11 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
git submodule update --init
|
||||||
MACHINE=`uname -m`
|
MACHINE=`uname -m`
|
||||||
BIN_DIR="build-$MACHINE-Debug"
|
BIN_DIR="build-$MACHINE-Debug"
|
||||||
[ -z "$CC" ] && [ ! -z `which gcc` ] && CC="gcc"
|
[ -z "$CC" ] && [ ! -z `which gcc` ] && CC="gcc"
|
||||||
[ -z "$CC" ] && [ ! -z `which tcc` ] && CC="tcc"
|
[ -z "$CC" ] && [ ! -z `which tcc` ] && CC="tcc"
|
||||||
[ -z "$CC" ] && [ ! -z `which cc` ] && CC="cc"
|
[ -z "$CC" ] && [ ! -z `which cc` ] && CC="cc"
|
||||||
[ -z "$JOBS" ] && JOBS=1
|
[ -z "$JOBS" ] && JOBS=$(nproc)
|
||||||
|
|
||||||
DISTCC=`which distcc`
|
DISTCC=`which distcc`
|
||||||
if [ ! -z "$DISTCC" ] ; then
|
if [ ! -z "$DISTCC" ] ; then
|
||||||
|
|
Loading…
Reference in New Issue