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 af083b7 commit aebe89cCopy full SHA for aebe89c
tools/build_steps.sh
@@ -48,10 +48,9 @@ function before_build {
48
install_gfortran
49
EOF
50
# re-export these, since we ran in a shell
51
- export FC="$(find /opt/gfortran/gfortran-darwin-${PLAT}-native/bin -name "*-gfortran")"
52
- local libgfortran="$(find /opt/gfortran/gfortran-darwin-${PLAT}-native/lib -name libgfortran.dylib)"
53
- local libdir=$(dirname $libgfortran)
54
- export FFLAGS="-L$libdir -Wl,-rpath,$libdir"
+ export FC=$(find /opt/gfortran/gfortran-darwin-${PLAT}-native/bin -name "*-gfortran")
+ local libdir=/opt/gfortran/gfortran-darwin-${PLAT}-native/lib
+ export FFLAGS="-L${libdir} -Wl,-rpath,${libdir}"
55
56
# Build the objconv tool
57
(cd ${ROOT_DIR}/objconv && bash ../tools/build_objconv.sh)
0 commit comments