Skip to content

Commit

Permalink
Try MPI linking required for cray/archer for everyone...
Browse files Browse the repository at this point in the history
  • Loading branch information
kburns committed Jan 27, 2024
1 parent 383e54b commit bbb4f93
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ def read(rel_path):
library_dirs = []
if INCLUDE_MPI:
include_dirs += [mpi4py.get_include(), get_include("mpi")]
libraries += [get_lib("mpi")]
libraries += ["mpi"]
library_dirs += [get_lib("mpi")]
if INCLUDE_FFTW:
include_dirs += ["dedalus/libraries/fftw/", get_include("fftw")]
libraries += ["fftw3_mpi", "fftw3"]
Expand Down

0 comments on commit bbb4f93

Please sign in to comment.