server/s/build

44 lines
953 B
Plaintext
Raw Normal View History

2014-04-11 18:50:12 +02:00
#!/bin/sh
ROOT=`pwd`
2014-04-11 18:50:12 +02:00
while [ ! -d $ROOT/.git ]; do
ROOT=`dirname $ROOT`
2014-04-11 18:50:12 +02:00
done
2015-07-11 23:25:09 +02:00
[ -z "$BUILD" ] && BUILD=Debug
if [ -z "$JOBS" ] ; then
if [ -e /usr/sbin/sysctl ]; then
JOBS=`sysctl -n hw.ncpu`
else
JOBS=`nproc`
fi
fi
DISTCC=`which distcc`
if [ ! -z "$DISTCC" ] ; then
JOBS=`distcc -j`
if [ -z "$JOBS" ] ; then
JOBS=1
elif [ $JOBS -gt 1 ] ; then
[ -z "$CC" ] && [ ! -z `which clang` ] && CC="clang"
[ -z "$CC" ] && [ ! -z `which gcc` ] && CC="gcc"
[ -z "$CC" ] && [ ! -z `which tcc` ] && CC="tcc"
[ -z "$CC" ] && [ ! -z `which cc` ] && CC="cc"
CC="$DISTCC $CC"
MAKEOPTS=-j$JOBS
fi
fi
echo "Building with $JOBS jobs"
2015-07-11 23:25:09 +02:00
if [ ! -d $ROOT/$BUILD ]; then
echo "cannot find build directory $BUILD in $ROOT. did you run cmake-init?"
2014-04-11 18:50:12 +02:00
exit
fi
2015-07-12 03:08:29 +02:00
git submodule update
echo "build eressea"
2015-07-11 23:25:09 +02:00
cd $ROOT/$BUILD
VERSION=$(git describe --match 'v*.*.*' --tags | sed 's/^v//')
2016-09-10 18:44:08 +02:00
cmake -DERESSEA_VERSION="$VERSION" ..
make -k $MAKEOPTS && make test
cd $OLDPWD