From 66582ebaaa0deaea238b2bbe1708094746f082b9 Mon Sep 17 00:00:00 2001 From: Kevin Murray Date: Tue, 12 Jan 2016 15:51:40 +1100 Subject: [PATCH] Add optimisation flag to static makefile --- src/static.makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/static.makefile b/src/static.makefile index 53cd2b4..e6701b0 100644 --- a/src/static.makefile +++ b/src/static.makefile @@ -21,7 +21,7 @@ CXX := g++ -CXXFLAGS += -static -static-libstdc++ -std=c++11 -fopenmp -DSEQAN_HAS_GZIP=1 -DSEQAN_HAS_BZIP2=1 -I src -I src/ext/ +CXXFLAGS += -O3 -static -static-libstdc++ -std=c++11 -fopenmp -DSEQAN_HAS_GZIP=1 -DSEQAN_HAS_BZIP2=1 -I src -I src/ext/ LDFLAGS += -lz -lbz2 VER=$(shell git describe --always)