Skip to content

Commit

Permalink
Merge upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
synodriver committed Aug 12, 2022
2 parents 89843b3 + b9b0e9d commit 34b008d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 42 deletions.
38 changes: 0 additions & 38 deletions .github/workflows/upload.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -194,3 +194,4 @@ Temporary Items

# Linux trash folder which might appear on any partition or disk
.Trash-*
dic.tar.gz
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,9 @@ def build_extensions(self):
extra_compile_args = ["-fopenmp"]
extra_link_args = ["-fopenmp"]
elif system == "Darwin":
os.system("brew install llvm libomp")
os.system("brew install clang-omp")
# os.environ["CPP"] = "/usr/local/opt/llvm/bin/clang"
os.system("brew install libomp")
extra_compile_args = ["-Xpreprocessor", "-fopenmp"]
extra_link_args = ["-Xpreprocessor", "-fopenmp"]
extra_link_args = ["-L/usr/local/lib", "-lomp"]
else:
extra_compile_args = ["-fopenmp"]
extra_link_args = ["-fopenmp"]
Expand Down

0 comments on commit 34b008d

Please sign in to comment.