Skip to content

Commit 93c8e1b

Browse files
committed
Merge upstream
2 parents 89843b3 + b9b0e9d commit 93c8e1b

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,3 +194,4 @@ Temporary Items
194194

195195
# Linux trash folder which might appear on any partition or disk
196196
.Trash-*
197+
dic.tar.gz

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,9 @@ def build_extensions(self):
9393
extra_compile_args = ["-fopenmp"]
9494
extra_link_args = ["-fopenmp"]
9595
elif system == "Darwin":
96-
os.system("brew install llvm libomp")
97-
os.system("brew install clang-omp")
98-
# os.environ["CPP"] = "/usr/local/opt/llvm/bin/clang"
96+
os.system("brew install libomp")
9997
extra_compile_args = ["-Xpreprocessor", "-fopenmp"]
100-
extra_link_args = ["-Xpreprocessor", "-fopenmp"]
98+
extra_link_args = ["-L/usr/local/lib", "-lomp"]
10199
else:
102100
extra_compile_args = ["-fopenmp"]
103101
extra_link_args = ["-fopenmp"]

0 commit comments

Comments
 (0)