Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Apr 2017 04:36:40 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r439595 - in head/devel: aarch64-gcc aarch64-none-elf-gcc amd64-gcc arm-none-eabi-gcc arm-none-eabi-gcc492 mips-gcc mips64-gcc powerpc64-gcc riscv64-gcc sparc64-gcc
Message-ID:  <201704280436.v3S4aeDl051529@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: linimon
Date: Fri Apr 28 04:36:40 2017
New Revision: 439595
URL: https://svnweb.freebsd.org/changeset/ports/439595

Log:
  Mark the gcc crosscompiler ports as broken on various tier-2 archs.
  
  Unfortunately neither the maintainer or I have time at the moment
  to chase down all of these failures.  The "fails to package" ones
  ought to be fairly easy to fix.
  
  Discussed with:		maintainer

Modified:
  head/devel/aarch64-gcc/Makefile
  head/devel/aarch64-none-elf-gcc/Makefile
  head/devel/amd64-gcc/Makefile
  head/devel/arm-none-eabi-gcc/Makefile
  head/devel/arm-none-eabi-gcc492/Makefile
  head/devel/mips-gcc/Makefile
  head/devel/mips64-gcc/Makefile
  head/devel/powerpc64-gcc/Makefile
  head/devel/riscv64-gcc/Makefile
  head/devel/sparc64-gcc/Makefile

Modified: head/devel/aarch64-gcc/Makefile
==============================================================================
--- head/devel/aarch64-gcc/Makefile	Fri Apr 28 03:52:29 2017	(r439594)
+++ head/devel/aarch64-gcc/Makefile	Fri Apr 28 04:36:40 2017	(r439595)
@@ -3,6 +3,8 @@
 PKGNAMEPREFIX=	aarch64-
 PLIST=	${.CURDIR}/pkg-plist
 
+BROKEN_aarch64=		configure: error: cannot compute suffix of object files: cannot compile
+
 MASTERDIR=	${.CURDIR}/../powerpc64-gcc
 
 .include "${MASTERDIR}/Makefile"

Modified: head/devel/aarch64-none-elf-gcc/Makefile
==============================================================================
--- head/devel/aarch64-none-elf-gcc/Makefile	Fri Apr 28 03:52:29 2017	(r439594)
+++ head/devel/aarch64-none-elf-gcc/Makefile	Fri Apr 28 04:36:40 2017	(r439595)
@@ -9,6 +9,10 @@ PLIST=	${.CURDIR}/pkg-plist
 ALL_TARGET=	all-gcc all-target-libgcc
 INSTALL_TARGET=	install-gcc install-target-libgcc
 
+BROKEN_aarch64=		fails to package
+BROKEN_mips=		configure: error: cannot compute suffix of object files: cannot compile
+BROKEN_mips64=		configure: error: cannot compute suffix of object files: cannot compile
+
 MASTERDIR=	${.CURDIR}/../powerpc64-gcc
 
 .include "${MASTERDIR}/Makefile"

Modified: head/devel/amd64-gcc/Makefile
==============================================================================
--- head/devel/amd64-gcc/Makefile	Fri Apr 28 03:52:29 2017	(r439594)
+++ head/devel/amd64-gcc/Makefile	Fri Apr 28 04:36:40 2017	(r439595)
@@ -8,6 +8,10 @@ GCC_TARGET=	x86_64-unknown-${OPSYS:tl}${
 BU_PREFIX=	x86_64-${OPSYS:tl}
 FREEBSD_EXTENSION=	yes
 
+BROKEN_aarch64=		error: invalid output constraint '=a' in asm
+BROKEN_armv6=		fails to package
+BROKEN_mips=		configure: error: cannot compute suffix of object files: cannot compile
+BROKEN_mips64=		configure: error: cannot compute suffix of object files: cannot compile
 BROKEN_powerpc64=	Does not build
 
 .include "${MASTERDIR}/Makefile"

Modified: head/devel/arm-none-eabi-gcc/Makefile
==============================================================================
--- head/devel/arm-none-eabi-gcc/Makefile	Fri Apr 28 03:52:29 2017	(r439594)
+++ head/devel/arm-none-eabi-gcc/Makefile	Fri Apr 28 04:36:40 2017	(r439595)
@@ -13,6 +13,10 @@ INSTALL_TARGET=	install-gcc install-targ
 CONFIGURE_ARGS=	--disable-libstdcxx \
 		--disable-multilib
 
+BROKEN_aarch64=		fails to package
+BROKEN_mips=		configure: error: cannot compute suffix of object files: cannot compile
+BROKEN_mips64=		configure: error: cannot compute suffix of object files: cannot compile
+
 MASTERDIR=	${.CURDIR}/../powerpc64-gcc
 
 .include "${MASTERDIR}/Makefile"

Modified: head/devel/arm-none-eabi-gcc492/Makefile
==============================================================================
--- head/devel/arm-none-eabi-gcc492/Makefile	Fri Apr 28 03:52:29 2017	(r439594)
+++ head/devel/arm-none-eabi-gcc492/Makefile	Fri Apr 28 04:36:40 2017	(r439595)
@@ -68,4 +68,9 @@ post-install:
 MAKE_ARGS+=	CXXFLAGS=-fbracket-depth=512
 .endif
 
+BROKEN_aarch64=		fails to package
+BROKEN_armv6=		error: no member named 'fancy_abort' in namespace 'std::__1'; did you mean simply 'fancy_abort'?
+BROKEN_mips=		configure: error: cannot compute suffix of object files: cannot compile
+BROKEN_mips64=		configure: error: cannot compute suffix of object files: cannot compile
+
 .include <bsd.port.post.mk>

Modified: head/devel/mips-gcc/Makefile
==============================================================================
--- head/devel/mips-gcc/Makefile	Fri Apr 28 03:52:29 2017	(r439594)
+++ head/devel/mips-gcc/Makefile	Fri Apr 28 04:36:40 2017	(r439595)
@@ -3,6 +3,8 @@
 PKGNAMEPREFIX=	mips-
 PLIST=	${.CURDIR}/pkg-plist
 
+BROKEN_aarch64=		fails to package
+
 MASTERDIR=	${.CURDIR}/../powerpc64-gcc
 
 .include "${MASTERDIR}/Makefile"

Modified: head/devel/mips64-gcc/Makefile
==============================================================================
--- head/devel/mips64-gcc/Makefile	Fri Apr 28 03:52:29 2017	(r439594)
+++ head/devel/mips64-gcc/Makefile	Fri Apr 28 04:36:40 2017	(r439595)
@@ -3,6 +3,9 @@
 PKGNAMEPREFIX=	mips64-
 PLIST=	${.CURDIR}/pkg-plist
 
+BROKEN_aarch64=		fails to package
+BROKEN_mips64=		fails to package
+
 MASTERDIR=	${.CURDIR}/../powerpc64-gcc
 
 .include "${MASTERDIR}/Makefile"

Modified: head/devel/powerpc64-gcc/Makefile
==============================================================================
--- head/devel/powerpc64-gcc/Makefile	Fri Apr 28 03:52:29 2017	(r439594)
+++ head/devel/powerpc64-gcc/Makefile	Fri Apr 28 04:36:40 2017	(r439595)
@@ -86,4 +86,8 @@ post-install:
 	@${RM} ${STAGEDIR}${PREFIX}/info/*
 	@${RM} ${STAGEDIR}${PREFIX}/man/man7/*
 
+# This port and all its slave ports fail on aarch64 -- but not all
+# the same way.  Provide this definition for the master.
+BROKEN_aarch64?=	fails to package
+
 .include <bsd.port.post.mk>

Modified: head/devel/riscv64-gcc/Makefile
==============================================================================
--- head/devel/riscv64-gcc/Makefile	Fri Apr 28 03:52:29 2017	(r439594)
+++ head/devel/riscv64-gcc/Makefile	Fri Apr 28 04:36:40 2017	(r439595)
@@ -63,4 +63,6 @@ post-install:
 	@if [ -d ${STAGEDIR}${PREFIX}/${INFO_PATH} ] ; then ${RM} -r ${STAGEDIR}${PREFIX}/${INFO_PATH}; fi
 	@${RM} ${STAGEDIR}${PREFIX}/man/man7/*
 
+BROKEN_aarch64=		fails to package
+
 .include <bsd.port.mk>

Modified: head/devel/sparc64-gcc/Makefile
==============================================================================
--- head/devel/sparc64-gcc/Makefile	Fri Apr 28 03:52:29 2017	(r439594)
+++ head/devel/sparc64-gcc/Makefile	Fri Apr 28 04:36:40 2017	(r439595)
@@ -3,6 +3,8 @@
 PKGNAMEPREFIX=	sparc64-
 PLIST=	${.CURDIR}/pkg-plist
 
+BROKEN_aarch64=		fails to package
+
 MASTERDIR=	${.CURDIR}/../powerpc64-gcc
 
 .include "${MASTERDIR}/Makefile"



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