diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-17 20:35:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-09 14:33:49 +0300 |
commit | 6bc504af2942412e97ab4e1fd6185fcf23f21798 (patch) | |
tree | 2c00650ac09d16e0fea9ae1f1f584fa6b9e39a1f /build.sh | |
parent | f4dd0b0292f0c7594488943be0b90689fa046ab7 (diff) | |
download | hercules-6bc504af2942412e97ab4e1fd6185fcf23f21798.tar.gz hercules-6bc504af2942412e97ab4e1fd6185fcf23f21798.tar.bz2 hercules-6bc504af2942412e97ab4e1fd6185fcf23f21798.tar.xz hercules-6bc504af2942412e97ab4e1fd6185fcf23f21798.zip |
In build.sh add command option old for build all with old gcc.
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -13,6 +13,12 @@ if [[ "${CMD}" == "default" || "${CMD}" == "all" ]]; then make install cd src/evol ./build.sh +elif [[ "${CMD}" == "old" ]]; then + ./configure --disable-lto --enable-packetver=20150000 --enable-debug=gdb + make -j3 + make install + cd src/evol + ./build.sh old elif [[ "${CMD}" == "server" ]]; then ./configure --enable-sanitize --disable-lto --enable-packetver=20150000 --enable-debug=gdb make -j3 |