We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 399ec00 commit 41bbea8Copy full SHA for 41bbea8
.github/workflows/dependencies/dependencies_mac.sh
@@ -9,10 +9,16 @@ set -eu -o pipefail
9
10
brew update
11
brew install gfortran || true
12
-brew install libomp || true
13
-brew install open-mpi || true
14
-brew install ccache || true
15
16
# verify installation
17
gfortran-14 --version
18
otool -L $(which gfortran-14)
+
+# make sure to install Open MPI with the correct Fortran compiler
+export FC=$(which gfortran-14)
19
+export F77=$FC
20
+export F90=$FC
21
22
+brew install libomp || true
23
+brew install open-mpi || true
24
+brew install ccache || true
0 commit comments