summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/musl/libucontext/0001-pass-LDFLAGS-to-link-step.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/musl/libucontext/0001-pass-LDFLAGS-to-link-step.patch')
-rw-r--r--meta/recipes-core/musl/libucontext/0001-pass-LDFLAGS-to-link-step.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/meta/recipes-core/musl/libucontext/0001-pass-LDFLAGS-to-link-step.patch b/meta/recipes-core/musl/libucontext/0001-pass-LDFLAGS-to-link-step.patch
deleted file mode 100644
index 0ab8caf3e6..0000000000
--- a/meta/recipes-core/musl/libucontext/0001-pass-LDFLAGS-to-link-step.patch
+++ /dev/null
@@ -1,31 +0,0 @@
1From 12d45d250d08e96e889e38e77273c3ef73e6fc97 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 25 Nov 2019 15:07:35 -0800
4Subject: [PATCH] pass LDFLAGS to link step
5
6This helps to use OE specific linker flags and fixes
7
8do_package_qa: QA Issue: No GNU_HASH in the ELF binary
9
10Upstream-Status: Pending
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13 Makefile | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/Makefile b/Makefile
17index 8a605fd..d1c9637 100644
18--- a/Makefile
19+++ b/Makefile
20@@ -20,7 +20,7 @@ ${LIBUCONTEXT_STATIC_NAME}: ${LIBUCONTEXT_OBJ}
21
22 ${LIBUCONTEXT_NAME}: ${LIBUCONTEXT_OBJ}
23 $(CC) -o ${LIBUCONTEXT_NAME} -Wl,-soname,${LIBUCONTEXT_SONAME} \
24- -shared ${LIBUCONTEXT_OBJ}
25+ -shared ${LIBUCONTEXT_OBJ} ${LDFLAGS}
26
27 ${LIBUCONTEXT_SONAME}: ${LIBUCONTEXT_NAME}
28 ln -sf ${LIBUCONTEXT_NAME} ${LIBUCONTEXT_SONAME}
29--
302.24.0
31