gfortran-10 has been added (#2103)

* GFortran-10 has been added

* Checkin of Ubuntu version has been added
This commit is contained in:
Andy Mishechkin
2020-11-25 11:13:17 +04:00
committed by GitHub
parent ebecc93df3
commit 61c1c8df4f

View File

@@ -3,6 +3,7 @@
## File: gfortran.sh ## File: gfortran.sh
## Desc: Installs GNU Fortran ## Desc: Installs GNU Fortran
################################################################################ ################################################################################
source $HELPER_SCRIPTS/os.sh
function InstallFortran { function InstallFortran {
version=$1 version=$1
@@ -27,6 +28,10 @@ versions=(
"gfortran-9" "gfortran-9"
) )
if ! isUbuntu16; then
versions+=("gfortran-10")
fi
for version in ${versions[*]} for version in ${versions[*]}
do do
InstallFortran $version InstallFortran $version