Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Feb 2019 09:40:33 +0000 (UTC)
From:      Gerald Pfeifer <gerald@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r492106 - in head/lang: gcc5 gcc6 gcc7 gcc7-devel gcc8
Message-ID:  <201902040940.x149eX3U007295@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gerald
Date: Mon Feb  4 09:40:33 2019
New Revision: 492106
URL: https://svnweb.freebsd.org/changeset/ports/492106

Log:
  On powerpcspe configure GCC --with-cpu=8548 instead of --with-cpu=8540,
  which caused the build to fail after the update to binutils 2.31 and was
  factually incorrect anyways (since the oldest we support is 8548).
  
  PR:		235393
  Reported by:	jhibbits

Modified:
  head/lang/gcc5/Makefile
  head/lang/gcc6/Makefile
  head/lang/gcc7-devel/Makefile
  head/lang/gcc7/Makefile
  head/lang/gcc8/Makefile

Modified: head/lang/gcc5/Makefile
==============================================================================
--- head/lang/gcc5/Makefile	Mon Feb  4 09:30:47 2019	(r492105)
+++ head/lang/gcc5/Makefile	Mon Feb  4 09:40:33 2019	(r492106)
@@ -68,7 +68,7 @@ MAKE_ARGS+=STAGE1_CXXFLAGS=-fbracket-depth=512
 CONFIGURE_ENV+=	UNAME_m="powerpc64"
 
 .elif ${ARCH} == powerpcspe
-CONFIGURE_ARGS+=	--with-cpu=8540 --enable-e500_double --without-fp
+CONFIGURE_ARGS+=	--with-cpu=8548 --enable-e500_double --without-fp
 .endif
 
 LANGUAGES:=	c,c++,objc,fortran

Modified: head/lang/gcc6/Makefile
==============================================================================
--- head/lang/gcc6/Makefile	Mon Feb  4 09:30:47 2019	(r492105)
+++ head/lang/gcc6/Makefile	Mon Feb  4 09:40:33 2019	(r492106)
@@ -84,7 +84,7 @@ USE_GCC=	5	# This port requires at least GCC 4.9, and 
 			# USE_GCC=yes or USE_GCC=X+ are not an option).
 
 .elif ${ARCH} == powerpcspe
-CONFIGURE_ARGS+=	--with-cpu=8540 --enable-e500_double --without-fp
+CONFIGURE_ARGS+=	--with-cpu=8548 --enable-e500_double --without-fp
 .endif
 
 LANGUAGES:=	c,c++,objc,fortran

Modified: head/lang/gcc7-devel/Makefile
==============================================================================
--- head/lang/gcc7-devel/Makefile	Mon Feb  4 09:30:47 2019	(r492105)
+++ head/lang/gcc7-devel/Makefile	Mon Feb  4 09:40:33 2019	(r492106)
@@ -69,7 +69,7 @@ USE_GCC=	5	# This port requires at least GCC 4.9, and 
 			# USE_GCC=yes or USE_GCC=X+ are not an option).
 
 .elif ${ARCH} == powerpcspe
-CONFIGURE_ARGS+=	--with-cpu=8540 --enable-e500_double --without-fp
+CONFIGURE_ARGS+=	--with-cpu=8548 --enable-e500_double --without-fp
 .endif
 
 LANGUAGES:=	c,c++,objc,fortran

Modified: head/lang/gcc7/Makefile
==============================================================================
--- head/lang/gcc7/Makefile	Mon Feb  4 09:30:47 2019	(r492105)
+++ head/lang/gcc7/Makefile	Mon Feb  4 09:40:33 2019	(r492106)
@@ -65,7 +65,7 @@ USE_GCC=	5	# This port requires at least GCC 4.9, and 
 			# USE_GCC=yes or USE_GCC=X+ are not an option).
 
 .elif ${ARCH} == powerpcspe
-CONFIGURE_ARGS+=	--with-cpu=8540 --enable-e500_double --without-fp
+CONFIGURE_ARGS+=	--with-cpu=8548 --enable-e500_double --without-fp
 .endif
 
 LANGUAGES:=	c,c++,objc,fortran

Modified: head/lang/gcc8/Makefile
==============================================================================
--- head/lang/gcc8/Makefile	Mon Feb  4 09:30:47 2019	(r492105)
+++ head/lang/gcc8/Makefile	Mon Feb  4 09:40:33 2019	(r492106)
@@ -65,7 +65,7 @@ USE_GCC=	5	# This port requires at least GCC 4.9, and 
 			# USE_GCC=yes or USE_GCC=X+ are not an option).
 
 .elif ${ARCH} == powerpcspe
-CONFIGURE_ARGS+=	--with-cpu=8540 --enable-e500_double --without-fp
+CONFIGURE_ARGS+=	--with-cpu=8548 --enable-e500_double --without-fp
 .endif
 
 LANGUAGES:=	c,c++,objc,fortran



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902040940.x149eX3U007295>