From 9c3da550dfcc8f3c8e69f95e5445e566ed2f221d Mon Sep 17 00:00:00 2001 From: Henry Weller Date: Wed, 31 May 2023 14:48:39 +0100 Subject: [PATCH] etc/config.sh/csh: Removed settings for gcc-4.?.? gcc-4.?.? is no longer supported as it is not C++14 standard compliant. --- etc/config.csh/settings | 7 +------ etc/config.sh/compiler | 9 +-------- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/etc/config.csh/settings b/etc/config.csh/settings index 0f8dafaf7e..15bb9b725b 100644 --- a/etc/config.csh/settings +++ b/etc/config.csh/settings @@ -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 diff --git a/etc/config.sh/compiler b/etc/config.sh/compiler index 7c974955a7..7f2626636f 100644 --- a/etc/config.sh/compiler +++ b/etc/config.sh/compiler @@ -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