svn commit: r537529 - head/Mk

Gerald Pfeifer gerald at FreeBSD.org
Tue Jun 2 08:49:22 UTC 2020


Author: gerald
Date: Tue Jun  2 08:49:21 2020
New Revision: 537529
URL: https://svnweb.freebsd.org/changeset/ports/537529

Log:
  Now that GCC 10.1 has been released and lang/gcc10 arrived to track
  GCC 10 releases, switch to that over lang/gcc10-devel when GCC 10 is
  requested.
  
  Use lang/gcc11-devel when GCC 11 is requested, but note that this is
  absolutely experimental and subject to constant change and likely
  breakage over the next half year at least before that release series
  enters stabilization.  Use at your own risk.

Modified:
  head/Mk/bsd.gcc.mk

Modified: head/Mk/bsd.gcc.mk
==============================================================================
--- head/Mk/bsd.gcc.mk	Tue Jun  2 08:44:30 2020	(r537528)
+++ head/Mk/bsd.gcc.mk	Tue Jun  2 08:49:21 2020	(r537529)
@@ -34,7 +34,7 @@ GCC_Include_MAINTAINER=		gerald at FreeBSD.org
 # All GCC versions supported by the ports framework.  Keep them in
 # ascending order and in sync with the table below. 
 # When updating this, keep Mk/bsd.default-versions.mk in sync.
-GCCVERSIONS=	4.8 7 8 9 10
+GCCVERSIONS=	4.8 7 8 9 10 11
 
 # No configurable parts below this. ####################################
 #
@@ -89,7 +89,7 @@ _USE_GCC:=	${GCC_DEFAULT}
 # A concrete version has been selected. Set proper ports dependencies,
 # CC, CXX, CPP, and flags.
 V:=			${_USE_GCC:S/.//}
-. if ${V} == 10
+. if ${V} == 11
 _GCC_PORT:=		gcc${V}-devel
 . else
 _GCC_PORT:=		gcc${V}


More information about the svn-ports-head mailing list