summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Maunz <andreas@maunz.de>2012-11-05 13:17:51 +0100
committerAndreas Maunz <andreas@maunz.de>2012-11-05 13:17:51 +0100
commit04303b88d749a10a481ece22812c9a360ee30904 (patch)
treefb4d6680d90b10df2c27514ed51fb26c11791534
parent2fff19938fa9709b8e35454764ea6e310006d845 (diff)
Added optimize flags to 4S compilation
-rwxr-xr-x4store-install2
1 files changed, 1 insertions, 1 deletions
diff --git a/4store-install b/4store-install
index 92414df..8b78d41 100755
--- a/4store-install
+++ b/4store-install
@@ -18,7 +18,7 @@ cd $OT_PREFIX/tmp/
cd $SELF
cmd="./autogen.sh" && run_cmd "$cmd" "Autogen"
export FST=$OT_PREFIX/4S
-cmd="./configure --prefix=$FST --exec-prefix=$FST --with-storage-path=$FST/var/lib --with-config-file=$FST/$SELF.conf -with-http-log=$FST/log" && run_cmd "$cmd" "Configure"
+cmd="./configure --prefix=$FST --exec-prefix=$FST --with-storage-path=$FST/var/lib --with-config-file=$FST/$SELF.conf -with-http-log=$FST/log CFLAGS=-O2 CPPFLAGS=-O3" && run_cmd "$cmd" "Configure"
cmd="make" && run_cmd "$cmd" "Make"
cmd="make install" && run_cmd "$cmd" "Make Install"
#cmd="make test" && run_cmd "$cmd" "Make Test"