diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-02 12:31:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-07-05 02:02:39 +0300 |
commit | 9590ac79701c2997eeb21fd0e4d26ee1a076606d (patch) | |
tree | 337e957ac058905ada0f4c0509bd619a8f37535d | |
parent | 4f4b99cec8e03114a744da93b933b650e64be4d8 (diff) | |
download | hercules-r20150716.tar.gz hercules-r20150716.tar.bz2 hercules-r20150716.tar.xz hercules-r20150716.zip |
In build script actual number of cores.r20150716
-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 $? |