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 22ac3a9 commit 686219dCopy full SHA for 686219d
Build/Scripts/set_thirdparty_compilers.sh
@@ -96,7 +96,9 @@ elif [[ "$FDS_BUILD_TARGET" == *"osx"* ]]; then
96
97
# Check for Fortran compiler (gfortran)
98
if [ $set_FC -eq 0 ]; then
99
- if command -v gfortran &> /dev/null; then
+ if command -v mpifort &> /dev/null; then
100
+ FC=mpifort
101
+ elif command -v gfortran &> /dev/null; then
102
FC=gfortran
103
else
104
echo "Error: gfortran is not available on this system."
0 commit comments