Skip to content
This repository was archived by the owner on Dec 8, 2024. It is now read-only.

Commit a7f07c0

Browse files
author
Silvia
authored
Fixed extra space before -lpthread flag (#105)
1 parent 98d8299 commit a7f07c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
# Intel
4141
if any(["intelem" in arg for arg in sys.argv]):
4242
COMPILER_FLAGS = ["-xHost", "-O3", "-axAVX", "-qopenmp"]
43-
LINKER_FLAGS = ["-liomp5", " -lpthread", "-lm", "-ldl"]
43+
LINKER_FLAGS = ["-liomp5", "-lpthread", "-lm", "-ldl"]
4444
MATH_LINKER_FLAGS = ["-L${MKLROOT}/lib/intel64", "-lmkl_rt"]
4545

4646

0 commit comments

Comments
 (0)