From: Waldemar Brodkorb <wbx@openadk.org>
To: buildroot@buildroot.org
Subject: [Buildroot] [PATCH] package/libsepol: fix reallocarray detection
Date: Sat, 17 Aug 2024 19:42:01 +0200 [thread overview]
Message-ID: <ZsDg6V61COGNWtyT@waldemar-brodkorb.de> (raw)
For some toolchains the detection of reallocarray fails with:
ld: final link failed: file truncated
It is hard to tell if it is a new feature of gcc or binutils
or even an architecture specific bug.
See here for example for an old bug where it was a HPPA specific
binutils problem:
https://sourceware.org/bugzilla/show_bug.cgi?id=19526
Fixes:
- http://autobuild.buildroot.net/results/335/335aad5ecba2a4d21772767aa3a80d7d5631f4e4
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
---
package/libsepol/0002-remove-o-dev-null.patch | 23 +++++++++++++++++++
1 file changed, 23 insertions(+)
create mode 100644 package/libsepol/0002-remove-o-dev-null.patch
diff --git a/package/libsepol/0002-remove-o-dev-null.patch b/package/libsepol/0002-remove-o-dev-null.patch
new file mode 100644
index 0000000000..b6559f6dbd
--- /dev/null
+++ b/package/libsepol/0002-remove-o-dev-null.patch
@@ -0,0 +1,23 @@
+From 7a9b8b4329285215e5608c3393394bef435b2220 Mon Sep 17 00:00:00 2001
+From: Waldemar Brodkorb <wbx@openadk.org>
+Date: Sat, 17 Aug 2024 19:05:42 +0200
+Subject: [PATCH] remove -o /dev/null
+
+With -o /dev/null there is following error happening:
+ld: final link failed: file truncated
+
+Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
+Upstream: https://github.com/SELinuxProject/selinux/issues/438
+---
+diff -Nur libsepol-3.6.orig/src/Makefile libsepol-3.6/src/Makefile
+--- libsepol-3.6.orig/src/Makefile 2023-12-13 15:46:22.000000000 +0100
++++ libsepol-3.6/src/Makefile 2024-08-17 19:37:14.447327553 +0200
+@@ -31,7 +31,7 @@
+
+ # check for reallocarray(3) availability
+ H := \#
+-ifeq (yes,$(shell printf '${H}define _GNU_SOURCE\n${H}include <stdlib.h>\nint main(void){void*p=reallocarray(NULL, 1, sizeof(char));return 0;}' | $(CC) -x c -o /dev/null - >/dev/null 2>&1 && echo yes))
++ifeq (yes,$(shell printf '${H}define _GNU_SOURCE\n${H}include <stdlib.h>\nint main(void){void*p=reallocarray(NULL, 1, sizeof(char));return 0;}' | $(CC) -x c - >/dev/null 2>&1 && echo yes))
+ override CFLAGS += -DHAVE_REALLOCARRAY
+ endif
+
--
2.30.2
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
next reply other threads:[~2024-08-17 17:42 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-17 17:42 Waldemar Brodkorb [this message]
2024-08-18 9:03 ` [Buildroot] [PATCH] package/libsepol: fix reallocarray detection Yann E. MORIN
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZsDg6V61COGNWtyT@waldemar-brodkorb.de \
--to=wbx@openadk.org \
--cc=buildroot@buildroot.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.