etc/config.sh/csh: Removed settings for gcc-4.?.?

gcc-4.?.? is no longer supported as it is not C++14 standard compliant.
This commit is contained in:
Henry Weller
2023-05-31 14:48:39 +01:00
parent 1d78434bee
commit 9c3da550df
2 changed files with 2 additions and 14 deletions

View File

@ -229,13 +229,8 @@ case ThirdParty:
set gmp_version=gmp-5.1.2
set mpfr_version=mpfr-3.1.2
set mpc_version=mpc-1.0.1
switch ("$WM_COMPILER")
case Gcc48:
set gcc_version=gcc-4.8.5
breaksw
case Gcc49:
set gcc_version=gcc-4.9.4
breaksw
case Gcc55:
set gcc_version=gcc-5.5.0
breaksw

View File

@ -2,7 +2,7 @@
# ========= |
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
# \\ / O peration | Website: https://openfoam.org
# \\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation
# \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
# \\/ M anipulation |
#------------------------------------------------------------------------------
# License
@ -39,12 +39,6 @@ OpenFOAM | ThirdParty)
mpc_version=mpc-1.0.1
case "$WM_COMPILER" in
Gcc48)
gcc_version=gcc-4.8.5
;;
Gcc49)
gcc_version=gcc-4.9.4
;;
Gcc55)
gcc_version=gcc-5.5.0
;;
@ -81,5 +75,4 @@ OpenFOAM | ThirdParty)
;;
esac
;;
esac