diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-01-04 23:56:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-07-05 02:02:38 +0300 |
commit | 39c648636a2caf3b6eb85a91844b5f30dc44ee22 (patch) | |
tree | 9d4618592ed1a044b9e4345c1c109c5d310c96ac | |
parent | 651ff483427eb4416efb065e78a4192a085b3e00 (diff) | |
download | hercules-39c648636a2caf3b6eb85a91844b5f30dc44ee22.tar.gz hercules-39c648636a2caf3b6eb85a91844b5f30dc44ee22.tar.bz2 hercules-39c648636a2caf3b6eb85a91844b5f30dc44ee22.tar.xz hercules-39c648636a2caf3b6eb85a91844b5f30dc44ee22.zip |
In build script add switch for build for valgrind.
-rwxr-xr-x | build.sh | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -19,6 +19,12 @@ elif [[ "${CMD}" == "old" ]]; then make install cd src/evol ./build.sh old +elif [[ "${CMD}" == "valgrind" ]]; then + ./configure --disable-lto --enable-packetver=20150000 --enable-debug=gdb --enable-manager=no + 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 |