1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-19 08:13:21 +00:00

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)
This commit is contained in:
Piotr Kubaj 2020-12-30 03:12:58 +00:00
parent 15627c3182
commit b5098e760e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=559637

View File

@ -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