git: 7a5d933b2fe5 - main - devel/elfutils: fix build on armv7 and powerpc
Piotr Kubaj
pkubaj at FreeBSD.org
Wed Jun 30 20:38:16 UTC 2021
The branch main has been updated by pkubaj:
URL: https://cgit.FreeBSD.org/ports/commit/?id=7a5d933b2fe5910f09beb8b3d58e3d994e827676
commit 7a5d933b2fe5910f09beb8b3d58e3d994e827676
Author: Piotr Kubaj <pkubaj at FreeBSD.org>
AuthorDate: 2021-06-30 20:37:40 +0000
Commit: Piotr Kubaj <pkubaj at 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-
More information about the dev-commits-ports-all
mailing list