From 9abcf20d48640773d06c5e4a04bf8e08885a2ef2 Mon Sep 17 00:00:00 2001 From: Ilya Kolpakov Date: Wed, 21 Mar 2018 20:24:34 +0100 Subject: [PATCH] add libz as a dependency. fixes #6 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d653c47..f406d9b 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ sources=[os.path.join('bwapy', 'libbwapy.c'), os.path.join('bwapy', 'memopts.c')], include_dirs=['bwa'], extra_compile_args=['-pedantic', '-Wall', '-std=c99', '-march=native', '-ffast-math', '-DUSE_SSE2', '-DNDEBUG'], - libraries=[], + libraries=['z'], extra_objects=[os.path.join('bwa','libbwa.a')] ))