summaryrefslogblamecommitdiff
path: root/build.sh
blob: 51c13a38a87d817c183b045a210c530ca5954aec (plain) (tree)
1
2
3
4
5
6
7
8

           





                          








                                                                                  
 

                                                      
          
                                                         

                                                                    
                   


                
                                  
                         
                   


                  
                                       
                                             
                   


                  
                                     
                                           
                   

                                     
                                                                                                              
                   
                                       
                                         
                   
  
       
#!/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 $?