diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-05 18:31:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-19 21:38:42 +0300 |
commit | b7e7e91f88ff8cab097616831be72fc5ff6d4847 (patch) | |
tree | 22a46f54f409a5df9be7a4167727131c9d4dd747 | |
parent | 07cd74d4e4aaf0ed6aaf898e1ab685a61ee1bf03 (diff) | |
download | hercules-b7e7e91f88ff8cab097616831be72fc5ff6d4847.tar.gz hercules-b7e7e91f88ff8cab097616831be72fc5ff6d4847.tar.bz2 hercules-b7e7e91f88ff8cab097616831be72fc5ff6d4847.tar.xz hercules-b7e7e91f88ff8cab097616831be72fc5ff6d4847.zip |
Add build script.
-rwxr-xr-x | build.sh | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/build.sh b/build.sh new file mode 100755 index 000000000..8846fd393 --- /dev/null +++ b/build.sh @@ -0,0 +1,59 @@ +#!/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 + +source src/evol/tools/vars.sh + +export COMMON="--enable-packetver=20150000 --enable-debug=gdb${SQL} --enable-epoll" +export CORES=$(cat /proc/cpuinfo|grep processor|wc -l) + +autoreconf +if [[ "${CMD}" == "default" || "${CMD}" == "all" ]]; then + export CC=gcc + ./configure --enable-manager=no --enable-sanitize=full ${COMMON} CPPFLAGS="${VARS}" + make -j${CORES} + make install + cd src/evol + ./build.sh +elif [[ "${CMD}" == "old" ]]; then + ./configure --disable-lto ${COMMON} CPPFLAGS="${VARS}" + make -j${CORES} + make install + cd src/evol + ./build.sh old +elif [[ "${CMD}" == "valgrind" ]]; then + ./configure --enable-manager=no ${COMMON} CPPFLAGS="${VARS}" + make -j${CORES} + make install + cd src/evol + ./build.sh old +elif [[ "${CMD}" == "gprof" ]]; then + ./configure --enable-manager=no --enable-profiler=gprof ${COMMON} CPPFLAGS="${VARS}" + make -j${CORES} + make install + cd src/evol + ./build.sh gprof +elif [[ "${CMD}" == "server" ]]; then + ./configure --enable-sanitize ${COMMON} CPPFLAGS="${VARS}" + 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} CPPFLAGS="${VARS}" + make -j${CORES} +fi +exit $? |