From 65377716497df0e4f063d36a507255d7e4237a8d Mon Sep 17 00:00:00 2001 From: Zhenwen Dai Date: Tue, 8 Sep 2015 21:38:48 +0100 Subject: [PATCH] bug fix for compilation on Mac --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ef51cd3e..93217fb4 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ def ismac(): if ismac(): compile_flags = [ '-O3', ] - link_args = [''] + link_args = [] else: compile_flags = [ '-fopenmp', '-O3', ] link_args = ['-lgomp']