summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-05-02 12:31:07 +0300
committerAndrei Karas <akaras@inbox.ru>2015-08-05 17:47:13 +0300
commit88ff6553ca19d83bac5bf34a13724763ce114937 (patch)
tree540c3815ef196e3ff14e6974983317f162d41016
parent7ac26825c2a315496bc34f8564d03e2a6070552e (diff)
downloadhercules-88ff6553ca19d83bac5bf34a13724763ce114937.tar.gz
hercules-88ff6553ca19d83bac5bf34a13724763ce114937.tar.bz2
hercules-88ff6553ca19d83bac5bf34a13724763ce114937.tar.xz
hercules-88ff6553ca19d83bac5bf34a13724763ce114937.zip
In build script actual number of cores.r20150809
-rwxr-xr-xbuild.sh14
1 files changed, 8 insertions, 6 deletions
diff --git a/build.sh b/build.sh
index f4c949b72..51c13a38a 100755
--- a/build.sh
+++ b/build.sh
@@ -16,35 +16,37 @@ fi
export COMMON="--disable-lto --enable-packetver=20150000 --enable-debug=gdb${SQL}"
+export CORES=$(cat /proc/cpuinfo|grep processor|wc -l)
+
autoreconf
if [[ "${CMD}" == "default" || "${CMD}" == "all" ]]; then
export CC=gcc-5
./configure --enable-manager=no --enable-sanitize=full ${COMMON}
- make -j9
+ make -j${CORES}
make install
cd src/evol
./build.sh
elif [[ "${CMD}" == "old" ]]; then
./configure ${COMMON}
- make -j9
+ make -j${CORES}
make install
cd src/evol
./build.sh old
elif [[ "${CMD}" == "valgrind" ]]; then
./configure --enable-manager=no ${COMMON}
- make -j9
+ make -j${CORES}
make install
cd src/evol
./build.sh old
elif [[ "${CMD}" == "server" ]]; then
./configure --enable-sanitize ${COMMON}
- make -j9
+ make -j${CORES}
make install
elif [[ "${CMD}" == "static" ]]; then
./configure LIBS="-lmysqlclient -lssl -lcrypto -pthread -lm -lz" --disable-64bit --enable-static ${COMMON}
- make -j9
+ make -j${CORES}
elif [[ "${CMD}" == "static64" ]]; then
./configure --enable-static ${COMMON}
- make -j9
+ make -j${CORES}
fi
exit $?