Skip to content

Commit

Permalink
Fix static makefile to work with docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
kdm9 committed Jan 12, 2016
1 parent 2c99d0f commit d109a13
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/static.makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@


CXX := g++
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
CXXFLAGS += -O3 -static -static-libstdc++ -std=c++11 -fopenmp -DSEQAN_HAS_GZIP=1 -DSEQAN_HAS_BZIP2=1 \
-I src -I src/ext/ -I src/ext/eigen3 -I src/ext/seqan/core/include
LDFLAGS += /usr/local/lib/libz.a /usr/local/lib/libbz2.a

VER=$(shell git describe --always)

Expand Down

0 comments on commit d109a13

Please sign in to comment.