-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix pyom MPI build with gcc * use newer os for tests * do not build mpi pyom
- Loading branch information
1 parent
dbb0a89
commit f42cdc7
Showing
2 changed files
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# fortran front end | ||
F90 = mpif90 | ||
CDFFLAGS = $(shell nf-config --fflags --flibs) | ||
MPIFLAGS = | ||
MPIFLAGS = -fallow-argument-mismatch | ||
F90FLAGS = -llapack -lblas -fconvert=big-endian -O3 -Wall #-check bounds | ||
|
||
# python front end | ||
F2PYFLAGS = --backend meson --dep lapack | ||
F2PY_MPIFLAGS = --dep mpi | ||
F2PYFLAGS = --backend meson --dep lapack --f90flags="$(F90FLAGS)" | ||
F2PY_MPIFLAGS = --dep mpi --f90flags="$(MPIFLAGS) $(F90FLAGS)" |