diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-05 18:31:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-27 17:09:04 +0300 |
commit | ecfcef59492c9c1ac5d3a9ecd96af60bd7749acc (patch) | |
tree | eab75ce5ef8b87d6784a81c483bc76506f29811f | |
parent | 83f0ab1ee657011226fa022a4de11162ef3cb67c (diff) | |
download | hercules-ecfcef59492c9c1ac5d3a9ecd96af60bd7749acc.tar.gz hercules-ecfcef59492c9c1ac5d3a9ecd96af60bd7749acc.tar.bz2 hercules-ecfcef59492c9c1ac5d3a9ecd96af60bd7749acc.tar.xz hercules-ecfcef59492c9c1ac5d3a9ecd96af60bd7749acc.zip |
Add build script.
-rwxr-xr-x | build.sh | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/build.sh b/build.sh new file mode 100755 index 000000000..e1c90817d --- /dev/null +++ b/build.sh @@ -0,0 +1,58 @@ +#!/bin/bash + +CMD="$1" + +if [[ -z "${CMD}" ]]; then + export CMD="default" +fi + +if [ -x "/usr/bin/mariadb_config" ]; then + export SQL=" --with-mysql=/usr/bin/mariadb_config" +elif [ -x "/usr/bin/mysql_config" ]; then + export SQL=" --with-mysql=/usr/bin/mysql_config" +else + export SQL="" +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 -j${CORES} + make install + cd src/evol + ./build.sh +elif [[ "${CMD}" == "old" ]]; then + ./configure ${COMMON} + make -j${CORES} + make install + cd src/evol + ./build.sh old +elif [[ "${CMD}" == "valgrind" ]]; then + ./configure --enable-manager=no ${COMMON} + make -j${CORES} + make install + cd src/evol + ./build.sh old +elif [[ "${CMD}" == "gprof" ]]; then + ./configure --enable-manager=no --enable-profiler=gprof ${COMMON} + make -j${CORES} + make install + cd src/evol + ./build.sh gprof +elif [[ "${CMD}" == "server" ]]; then + ./configure --enable-sanitize ${COMMON} + make -j${CORES} + make install +elif [[ "${CMD}" == "static" ]]; then + ./configure LIBS="-lmysqlclient -lssl -lcrypto -pthread -lm -lz" --disable-64bit --enable-static ${COMMON} + make -j${CORES} +elif [[ "${CMD}" == "static64" ]]; then + ./configure --enable-static ${COMMON} + make -j${CORES} +fi +exit $? |