svn commit: r559637 - head/Mk

Piotr Kubaj pkubaj at FreeBSD.org
Wed Dec 30 03:12:58 UTC 2020


Author: pkubaj
Date: Wed Dec 30 03:12:58 2020
New Revision: 559637
URL: https://svnweb.freebsd.org/changeset/ports/559637

Log:
  Switch default GCC for powerpc64le to 10.
  
  9 does not yet work and the switch to 10 is near.
  
  PR:		251670
  Approved by:	gerald@ (maintainer)

Modified:
  head/Mk/bsd.default-versions.mk

Modified: head/Mk/bsd.default-versions.mk
==============================================================================
--- head/Mk/bsd.default-versions.mk	Wed Dec 30 03:11:14 2020	(r559636)
+++ head/Mk/bsd.default-versions.mk	Wed Dec 30 03:12:58 2020	(r559637)
@@ -47,9 +47,11 @@ FIREBIRD_DEFAULT?=	2.5
 FORTRAN_DEFAULT?=	gfortran
 # Possible values: 3.2.0
 FPC_DEFAULT?=		3.2.0
-# Possible values: 8, 9 (powerpcspe was dropped with GCC 9)
+# Possible values: 8, 9 (powerpcspe was dropped with GCC 9), 10
 .if ${ARCH} == "powerpcspe"
 GCC_DEFAULT?=		8
+.elif ${ARCH} == "powerpc64le"
+GCC_DEFAULT?=		10
 .else
 GCC_DEFAULT?=		9
 .endif


More information about the svn-ports-all mailing list