svn commit: r492106 - in head/lang: gcc5 gcc6 gcc7 gcc7-devel gcc8
Gerald Pfeifer
gerald at FreeBSD.org
Mon Feb 4 09:40:35 UTC 2019
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
More information about the svn-ports-all
mailing list