summaryrefslogtreecommitdiff
path: root/build.sh
blob: fa8cee49776cfcd5d32721634b78bbea1e75a569 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

CMD="$1"

if [[ -z "${CMD}" ]]; then
    export CMD="default"
fi

autoreconf
if [[ "${CMD}" == "defaule" ]]; then
    ./configure --enable-sanitize --disable-lto --enable-packetver=20150000 --enable-debug=gdb
    make -j3
    make install
elif [[ "${CMD}" == "static" ]]; then
    ./configure LIBS="-lmysqlclient -lssl -lcrypto -pthread -lm -lz" --disable-64bit --enable-static --disable-lto --enable-packetver=20150000 --enable-debug=gdb
    make -j3
elif [[ "${CMD}" == "static64" ]]; then
    ./configure --enable-static --disable-lto --enable-packetver=20150000 --enable-debug=gdb
    make -j3
fi
exit $?