Skip to content

Commit

Permalink
TYPO: in ubuntu install
Browse files Browse the repository at this point in the history
  • Loading branch information
jrenaud90 committed Feb 13, 2024
1 parent cf8b2a2 commit 5ba794c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions _build_cyrk.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
extra_compile_args = ['-O3']
extra_link_args = []
else:
extra_compile_args = ['-fopenmp -O3']
extra_link_args = ['-fopenmp -O3']
extra_compile_args = ['-fopenmp', '-O3']
extra_link_args = ['-fopenmp', '-O3']
macro_list = [("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")]

# Load TidalPy's cython extensions
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
extra_compile_args = ['-O3']
extra_link_args = []
else:
extra_compile_args = ['-fopenmp -O3']
extra_link_args = ['-fopenmp -O3']
extra_compile_args = ['-fopenmp', '-O3']
extra_link_args = ['-fopenmp', '-O3']
macro_list = [("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")]

# Load TidalPy's cython extensions
Expand Down

0 comments on commit 5ba794c

Please sign in to comment.