Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Jun 2021 20:38:15 GMT
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 7a5d933b2fe5 - main - devel/elfutils: fix build on armv7 and powerpc
Message-ID:  <202106302038.15UKcFq5038635@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by pkubaj:

URL: https://cgit.FreeBSD.org/ports/commit/?id=7a5d933b2fe5910f09beb8b3d58e3d994e827676

commit 7a5d933b2fe5910f09beb8b3d58e3d994e827676
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2021-06-30 20:37:40 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2021-06-30 20:37:40 +0000

    devel/elfutils: fix build on armv7 and powerpc
    
    Same issues as on i386.
---
 devel/elfutils/Makefile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/devel/elfutils/Makefile b/devel/elfutils/Makefile
index 5634f05cb6d0..392a9404e949 100644
--- a/devel/elfutils/Makefile
+++ b/devel/elfutils/Makefile
@@ -16,7 +16,6 @@ LICENSE_FILE_LGPL3=	${WRKSRC}/COPYING-LGPLV3
 
 IGNORE_FreeBSD_11=	fails to build: fails to compile dwarf_abbrev_hash.c
 BROKEN_armv6=		fails to build: fails to compile i386_disasm.c
-BROKEN_armv7=		fails to build: fails to compile i386_disasm.c
 BROKEN_sparc64=		sparc patch does not apply cleanly to 0.172
 
 LIB_DEPENDS=	libargp.so:devel/argp-standalone
@@ -41,7 +40,9 @@ CFLAGS+=	-Wno-null-dereference -Wno-unused-value
 # For GCC8:
 CFLAGS+=	-Wno-cast-function-type
 # Give i386 a prayer of building, and we can fix the warnings later:
-CFLAGS_i386+=	-Wno-error
+CFLAGS_armv7=	-Wno-error
+CFLAGS_i386=	-Wno-error
+CFLAGS_powerpc=	-Wno-error
 
 # Avoid conflict with binutils / elftoolchain programs with the same names:
 CONFIGURE_ARGS+=	--program-prefix=eu-



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