diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-02 12:31:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-09 14:33:50 +0300 |
commit | 9e7f6962f911215b7418c9e7d4de33e7535aadce (patch) | |
tree | 4a3e79a07e9cbd61345f48f8d48bfdedf043ddcb | |
parent | 059b3c0dd1af3d03a8977ce46cab946481f7228a (diff) | |
download | hercules-r20150810_2.tar.gz hercules-r20150810_2.tar.bz2 hercules-r20150810_2.tar.xz hercules-r20150810_2.zip |
In build script actual number of cores.r20150810_2
-rwxr-xr-x | build.sh | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -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 $? |