summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-02-21 16:33:21 +0300
committerAndrei Karas <akaras@inbox.ru>2015-02-21 16:33:31 +0300
commit875a09d8a893fd17c43d85e9a318ff0d4d359e6f (patch)
treecc1f62f8b786c98f56d51b5c756e9e4ca125e4d0 /build.sh
parent8e50387632bd4bbab6f1a85b94afa24340a3ce19 (diff)
downloadevol-hercules-875a09d8a893fd17c43d85e9a318ff0d4d359e6f.tar.gz
evol-hercules-875a09d8a893fd17c43d85e9a318ff0d4d359e6f.tar.bz2
evol-hercules-875a09d8a893fd17c43d85e9a318ff0d4d359e6f.tar.xz
evol-hercules-875a09d8a893fd17c43d85e9a318ff0d4d359e6f.zip
Add gprof build flag.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/build.sh b/build.sh
index 7b59289..29cc8b7 100755
--- a/build.sh
+++ b/build.sh
@@ -15,6 +15,8 @@ if [[ "${CMD}" == "default" ]]; then
../configure --enable-sanitize
elif [[ "${CMD}" == "old" ]]; then
../configure
+elif [[ "${CMD}" == "gprof" ]]; then
+ ../configure --enable-gprof
fi
make -j3
export RET=$?