diff options
Diffstat (limited to 'meta/recipes-core/musl')
-rw-r--r-- | meta/recipes-core/musl/files/0001-Make-dynamic-linker-a-relative-symlink-to-libc.patch | 34 | ||||
-rw-r--r-- | meta/recipes-core/musl/musl_git.bb | 3 |
2 files changed, 36 insertions, 1 deletions
diff --git a/meta/recipes-core/musl/files/0001-Make-dynamic-linker-a-relative-symlink-to-libc.patch b/meta/recipes-core/musl/files/0001-Make-dynamic-linker-a-relative-symlink-to-libc.patch new file mode 100644 index 0000000000..5490b1cba6 --- /dev/null +++ b/meta/recipes-core/musl/files/0001-Make-dynamic-linker-a-relative-symlink-to-libc.patch | |||
@@ -0,0 +1,34 @@ | |||
1 | From 94c0b97b62125d8bbc92dce0694e387d5b2ad181 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Sun, 10 Jan 2016 12:14:02 -0800 | ||
4 | Subject: [PATCH] Make dynamic linker a relative symlink to libc | ||
5 | |||
6 | absolute symlink into $(libdir) fails to load in a cross build | ||
7 | environment, especially when executing qemu in usermode to run target | ||
8 | applications, which cross build systems often do, since not everything | ||
9 | can be computed during cross builds, qemu in usermode often comes to aid | ||
10 | in such situations to feed into cross builds. | ||
11 | |||
12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
13 | --- | ||
14 | Upstream-Status: Pending | ||
15 | |||
16 | Makefile | 2 +- | ||
17 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
18 | |||
19 | diff --git a/Makefile b/Makefile | ||
20 | index b2226fa..0d71f7f 100644 | ||
21 | --- a/Makefile | ||
22 | +++ b/Makefile | ||
23 | @@ -189,7 +189,7 @@ $(DESTDIR)$(includedir)/%: include/% | ||
24 | $(INSTALL) -D -m 644 $< $@ | ||
25 | |||
26 | $(DESTDIR)$(LDSO_PATHNAME): $(DESTDIR)$(libdir)/libc.so | ||
27 | - $(INSTALL) -D -l $(libdir)/libc.so $@ || true | ||
28 | + $(INSTALL) -D -l ..$(libdir)/libc.so $@ || true | ||
29 | |||
30 | install-libs: $(ALL_LIBS:lib/%=$(DESTDIR)$(libdir)/%) $(if $(SHARED_LIBS),$(DESTDIR)$(LDSO_PATHNAME),) | ||
31 | |||
32 | -- | ||
33 | 2.7.0 | ||
34 | |||
diff --git a/meta/recipes-core/musl/musl_git.bb b/meta/recipes-core/musl/musl_git.bb index 5b94d1fe28..8970307cba 100644 --- a/meta/recipes-core/musl/musl_git.bb +++ b/meta/recipes-core/musl/musl_git.bb | |||
@@ -10,6 +10,7 @@ PV = "1.1.12+git${SRCPV}" | |||
10 | # mirror is at git://github.com/kraj/musl.git | 10 | # mirror is at git://github.com/kraj/musl.git |
11 | 11 | ||
12 | SRC_URI = "git://git.musl-libc.org/musl \ | 12 | SRC_URI = "git://git.musl-libc.org/musl \ |
13 | file://0001-Make-dynamic-linker-a-relative-symlink-to-libc.patch \ | ||
13 | " | 14 | " |
14 | 15 | ||
15 | S = "${WORKDIR}/git" | 16 | S = "${WORKDIR}/git" |
@@ -49,7 +50,7 @@ do_install() { | |||
49 | oe_runmake install DESTDIR='${D}' | 50 | oe_runmake install DESTDIR='${D}' |
50 | 51 | ||
51 | install -d ${D}${bindir} | 52 | install -d ${D}${bindir} |
52 | ln -s ${libdir}/libc.so ${D}${bindir}/ldd | 53 | ln -s ../../${libdir}/libc.so ${D}${bindir}/ldd |
53 | } | 54 | } |
54 | 55 | ||
55 | RDEPENDS_${PN}-dev = "linux-libc-headers-dev" | 56 | RDEPENDS_${PN}-dev = "linux-libc-headers-dev" |