Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Dec 2, 2019
1 parent 7c078e4 commit b95e9be
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Expand Up @@ -203,13 +203,13 @@ def __str__(self):
elif sys.platform.startswith("darwin"):
libraries_thread = None
extra_compile_args_thread = ['-lpthread', '-stdlib=libc++', '-std=c++11',
'-mmacosx-version-min=10.7'] # , '-openmp']
'-mmacosx-version-min=10.7', '-fopenmp']
extra_compile_args_numbers = ['-stdlib=libc++', '-mmacosx-version-min=10.7',
'-std=c++11'] # , '-openmp']
'-std=c++11', '-fopenmp']
extra_compile_args_bench = extra_compile_args_numbers.copy()
extra_compile_args_bench.append('-fpermissive')
extra_link_args = [] # ['-lomp']
define_macros = None
extra_link_args = ["-lomp"]
define_macros = [('USE_OPENMP', None)]
else:
libraries_thread = None
extra_compile_args_thread = ['-lpthread', '-std=c++11', '-fopenmp']
Expand Down

0 comments on commit b95e9be

Please sign in to comment.