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 2f333bd commit cc53cbcCopy full SHA for cc53cbc
tools/build_steps.sh
@@ -39,7 +39,16 @@ 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
+ # Since install_fortran uses `uname -a` to determine arch,
43
+ # force the architecture
44
+ arch -${PLAT} bash -s << " EOF"
45
+ set -ex
46
+ source tools/gfortran_utils.sh
47
+ install_gfortran
48
+ EOF
49
+ which gfortran
50
+ gfortran --version
51
+
52
# Deployment target set by gfortran_utils
53
echo "Deployment target $MACOSX_DEPLOYMENT_TARGET"
54
0 commit comments