:100755 100755 7ac0fbb... 0000000... M setup.py diff --git a/setup.py b/setup.py index 7ac0fbb..8146c86 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ MATH_LINKER_FLAGS = ["-lblas", "-llapack"] # UNCOMMENT TO FORCE LINKING TO MKL with GNU compilers: if mkl_exists(verbose=True): - LINKER_FLAGS = ["-lgomp", " -lpthread", "-lm", "-ldl"] + LINKER_FLAGS = ["-lgomp", "-lpthread", "-lm", "-ldl"] MATH_LINKER_FLAGS = ["-L${MKLROOT}/lib/intel64", "-lmkl_rt"] # For clang without OpenMP: (i.e. most Apple/mac system) @@ -38,7 +38,7 @@ if sys.platform == "darwin" and all(["gnu" not in arg for arg in sys.argv]): # Intel if any(["intelem" in arg for arg in sys.argv]): COMPILER_FLAGS = ["-xHost", "-O3", "-axAVX", "-qopenmp"] - LINKER_FLAGS = ["-liomp5", " -lpthread", "-lm", "-ldl"] + LINKER_FLAGS = ["-liomp5", "-lpthread", "-lm", "-ldl"] MATH_LINKER_FLAGS = ["-L${MKLROOT}/lib/intel64", "-lmkl_rt"]