diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-05 18:31:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-09-24 23:32:06 +0300 |
commit | d9f9fc4fe575ece1746f32b96a6e2c07f69436ad (patch) | |
tree | c9994190d1b7a1a2154cf267b36dbcad4b3752db | |
parent | 8b5818d46631dd2943f507e9b9fbfdc0d02d6012 (diff) | |
download | hercules-d9f9fc4fe575ece1746f32b96a6e2c07f69436ad.tar.gz hercules-d9f9fc4fe575ece1746f32b96a6e2c07f69436ad.tar.bz2 hercules-d9f9fc4fe575ece1746f32b96a6e2c07f69436ad.tar.xz hercules-d9f9fc4fe575ece1746f32b96a6e2c07f69436ad.zip |
Add build script.
-rwxr-xr-x | build.sh | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/build.sh b/build.sh new file mode 100755 index 000000000..51c13a38a --- /dev/null +++ b/build.sh @@ -0,0 +1,52 @@ +#!/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}" == "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 $? |