File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,5 @@ Binary archives
6
6
gfortran
7
7
********
8
8
9
- From https://gcc.gnu.org/wiki/GFortranBinaries
9
+ gfortran-8.2 from https://github.com/fxcoudert/gfortran-for-macOS/releases/download/8.2/gfortran-8.2-Mojave.dmg
10
10
11
- * gfortran-4.9.0-Mavericks.dmg from http://coudert.name/software/gfortran-4.9.0-Mavericks.dmg.
Original file line number Diff line number Diff line change 1
1
# Bash utilities for use with gfortran
2
2
3
- GF_LIB_URL=" https://3f23b170c54c2533c070-1c8a9b3114517dc5fe17b7c3f8c63a43.ssl.cf2.rackcdn.com"
4
3
ARCHIVE_SDIR=" ${ARCHIVE_SDIR:- archives} "
5
4
6
5
GF_UTIL_DIR=$( dirname " ${BASH_SOURCE[0]} " )
@@ -81,17 +80,14 @@ function get_gf_lib_for_suf {
81
80
if [ -n " $suffix " ]; then suffix=" -$suffix " ; fi
82
81
local fname=" $prefix -${plat_tag}${suffix} .tar.gz"
83
82
local out_fname=" ${ARCHIVE_SDIR} /$fname "
84
- if [ ! -e " $out_fname " ]; then
85
- curl -L " ${GF_LIB_URL} /$fname " > $out_fname || (echo " Fetch of $out_fname failed" ; exit 1)
86
- fi
87
83
[ -s $out_fname ] || (echo " $out_fname is empty" ; exit 24)
88
84
echo " $out_fname "
89
85
}
90
86
91
87
if [ " $( uname) " == " Darwin" ]; then
92
88
mac_target=${MACOSX_DEPLOYMENT_TARGET:- $(get_macosx_target)}
93
89
export MACOSX_DEPLOYMENT_TARGET=$mac_target
94
- GFORTRAN_DMG=" ${GF_UTIL_DIR} /archives/gfortran-4.9.0-Mavericks .dmg"
90
+ GFORTRAN_DMG=" ${GF_UTIL_DIR} /archives/gfortran-8.2-Mojave .dmg"
95
91
export GFORTRAN_SHA=" $( shasum $GFORTRAN_DMG ) "
96
92
97
93
function install_arm64_cross_gfortran {
You can’t perform that action at this time.
0 commit comments