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 69a876e commit 30fa56aCopy full SHA for 30fa56a
tools/build_steps.sh
@@ -39,10 +39,15 @@ function before_build {
39
# get_macpython_environment ${MB_PYTHON_VERSION} venv
40
python3.9 -m venv venv
41
source venv/bin/activate
42
- alias gfortran=gfortran-15
43
- echo "gfortran --version"
+
+ # Link to gfortran, see https://github.com/actions/runner-images/issues/3371
44
+ sudo ln -fs /opt/homebrew/bin/gfortran-${GCC_V} /usr/local/bin/gfortran
45
+ sudo mkdir -p /usr/local/gfortran
46
+ sudo ln -sf /opt/homebrew/Cellar/gcc@${GCC_V}/*/lib/gcc/${GCC_V} /usr/local/gfortran/lib
47
+ echo GFORTRAN
48
which gfortran
49
gfortran --version
50
+ echo --------
51
# Deployment target set by gfortran_utils
52
echo "Deployment target $MACOSX_DEPLOYMENT_TARGET"
53
0 commit comments