diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-06-23 19:18:15 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-06-23 19:18:15 +0300 |
commit | 121f8574a097ba608327c294c81f40eb73273570 (patch) | |
tree | bc010bf5163844210e75223b45ed04db4773ead2 | |
parent | b6744e29f5bd6c46495d2407115a1a3986806491 (diff) | |
download | evol-tools-121f8574a097ba608327c294c81f40eb73273570.tar.gz evol-tools-121f8574a097ba608327c294c81f40eb73273570.tar.bz2 evol-tools-121f8574a097ba608327c294c81f40eb73273570.tar.xz evol-tools-121f8574a097ba608327c294c81f40eb73273570.zip |
localserver: add script for build server and plugin with asan / sanity flags.
-rwxr-xr-x | localserver/buildasan.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/localserver/buildasan.sh b/localserver/buildasan.sh new file mode 100755 index 0000000..08332b9 --- /dev/null +++ b/localserver/buildasan.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +export DIR=`pwd` +rm -rf ../../server-plugin/build/ +mkdir ../../server-plugin/build/ +cd ${DIR}/../../server-code/ +make clean +./build.sh |