Skip to content

Commit

Permalink
build/pkgs/{gcc,gfortran}/spkg-configure.m4: Allow 14.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Mar 30, 2024
1 parent b693ea9 commit f45874a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build/pkgs/gcc/spkg-configure.m4
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ SAGE_SPKG_CONFIGURE_BASE([gcc], [
# Install our own GCC if the system-provided one is older than gcc 8.4
SAGE_SHOULD_INSTALL_GCC([you have $CXX version $GXX_VERSION, which is quite old])
],
[1[[4-9]].*], [
# Install our own GCC if the system-provided one is newer than 13.x.
[1[[5-9]].*], [
# Install our own GCC if the system-provided one is newer than 14.x.
# See https://github.com/sagemath/sage/issues/29456
SAGE_SHOULD_INSTALL_GCC([$CXX is g++ version $GXX_VERSION, which is too recent for this version of Sage])
])
Expand Down
4 changes: 2 additions & 2 deletions build/pkgs/gfortran/spkg-configure.m4
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ SAGE_SPKG_CONFIGURE([gfortran], [
# Install our own gfortran if the system-provided one is older than gcc-4.8.
SAGE_SHOULD_INSTALL_GFORTRAN([$FC is version $GFORTRAN_VERSION, which is quite old])
],
[1[[4-9]].*], [
# Install our own gfortran if the system-provided one is newer than 13.x.
[1[[5-9]].*], [
# Install our own gfortran if the system-provided one is newer than 14.x.
# See https://github.com/sagemath/sage/issues/29456, https://github.com/sagemath/sage/issues/31838
SAGE_MUST_INSTALL_GFORTRAN([$FC is version $GFORTRAN_VERSION, which is too recent for this version of Sage])
])
Expand Down

0 comments on commit f45874a

Please sign in to comment.