diff options
-rw-r--r-- | meta/recipes-devtools/pseudo/files/older-glibc-symbols.patch | 38 | ||||
-rw-r--r-- | meta/recipes-devtools/pseudo/pseudo_git.bb | 3 |
2 files changed, 26 insertions, 15 deletions
diff --git a/meta/recipes-devtools/pseudo/files/older-glibc-symbols.patch b/meta/recipes-devtools/pseudo/files/older-glibc-symbols.patch index 1552c69b52..c453b5f735 100644 --- a/meta/recipes-devtools/pseudo/files/older-glibc-symbols.patch +++ b/meta/recipes-devtools/pseudo/files/older-glibc-symbols.patch | |||
@@ -12,26 +12,31 @@ Yes this is horrible. Better solutions welcome. | |||
12 | 12 | ||
13 | There is more info in the bug: [YOCTO #14521] | 13 | There is more info in the bug: [YOCTO #14521] |
14 | 14 | ||
15 | Upstream-Status: Inappropriate [this patch is native only] | 15 | Upstream-Status: Inappropriate [this patch is native and nativesdk] |
16 | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> | 16 | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> |
17 | 17 | ||
18 | Index: git/Makefile.in | 18 | Tweak library search order, make prebuilt lib ahead of recipe lib |
19 | =================================================================== | 19 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> |
20 | --- git.orig/Makefile.in | 20 | --- |
21 | +++ git/Makefile.in | 21 | Makefile.in | 2 +- |
22 | @@ -122,7 +122,7 @@ libpseudo: $(LIBPSEUDO) | 22 | pseudo_wrappers.c | 5 ++++- |
23 | 2 files changed, 5 insertions(+), 2 deletions(-) | ||
24 | |||
25 | diff --git a/Makefile.in b/Makefile.in | ||
26 | --- a/Makefile.in | ||
27 | +++ b/Makefile.in | ||
28 | @@ -120,7 +120,7 @@ $(PSEUDODB): pseudodb.o $(SHOBJS) $(DBOBJS) pseudo_ipc.o | $(BIN) | ||
29 | libpseudo: $(LIBPSEUDO) | ||
30 | |||
23 | $(LIBPSEUDO): $(WRAPOBJS) pseudo_client.o pseudo_ipc.o $(SHOBJS) | $(LIB) | 31 | $(LIBPSEUDO): $(WRAPOBJS) pseudo_client.o pseudo_ipc.o $(SHOBJS) | $(LIB) |
24 | $(CC) $(CFLAGS) $(CFLAGS_PSEUDO) -shared -o $(LIBPSEUDO) \ | 32 | - $(CC) $(CFLAGS) $(CFLAGS_PSEUDO) -shared -o $(LIBPSEUDO) \ |
33 | + $(CC) $(CFLAGS) -Lprebuilt/$(shell uname -m)-linux/lib/ $(CFLAGS_PSEUDO) -shared -o $(LIBPSEUDO) \ | ||
25 | pseudo_client.o pseudo_ipc.o \ | 34 | pseudo_client.o pseudo_ipc.o \ |
26 | - $(WRAPOBJS) $(SHOBJS) $(LDFLAGS) $(CLIENT_LDFLAGS) | 35 | $(WRAPOBJS) $(SHOBJS) $(LDFLAGS) $(CLIENT_LDFLAGS) |
27 | + $(WRAPOBJS) $(SHOBJS) $(LDFLAGS) -Lprebuilt/$(shell uname -m)-linux/lib/ $(CLIENT_LDFLAGS) | ||
28 | 36 | ||
29 | # *everything* now relies on stuff that's generated in the | 37 | diff --git a/pseudo_wrappers.c b/pseudo_wrappers.c |
30 | # wrapper process. | 38 | --- a/pseudo_wrappers.c |
31 | Index: git/pseudo_wrappers.c | 39 | +++ b/pseudo_wrappers.c |
32 | =================================================================== | ||
33 | --- git.orig/pseudo_wrappers.c | ||
34 | +++ git/pseudo_wrappers.c | ||
35 | @@ -100,10 +100,13 @@ static void libpseudo_atfork_child(void) | 40 | @@ -100,10 +100,13 @@ static void libpseudo_atfork_child(void) |
36 | pseudo_mutex_holder = 0; | 41 | pseudo_mutex_holder = 0; |
37 | } | 42 | } |
@@ -47,3 +52,6 @@ Index: git/pseudo_wrappers.c | |||
47 | 52 | ||
48 | pseudo_getlock(); | 53 | pseudo_getlock(); |
49 | pseudo_antimagic(); | 54 | pseudo_antimagic(); |
55 | -- | ||
56 | 2.27.0 | ||
57 | |||
diff --git a/meta/recipes-devtools/pseudo/pseudo_git.bb b/meta/recipes-devtools/pseudo/pseudo_git.bb index 79b7123e38..328177c9bf 100644 --- a/meta/recipes-devtools/pseudo/pseudo_git.bb +++ b/meta/recipes-devtools/pseudo/pseudo_git.bb | |||
@@ -8,6 +8,9 @@ SRC_URI = "git://git.yoctoproject.org/pseudo;branch=oe-core \ | |||
8 | SRC_URI:append:class-native = " \ | 8 | SRC_URI:append:class-native = " \ |
9 | http://downloads.yoctoproject.org/mirror/sources/pseudo-prebuilt-2.33.tar.xz;subdir=git/prebuilt;name=prebuilt \ | 9 | http://downloads.yoctoproject.org/mirror/sources/pseudo-prebuilt-2.33.tar.xz;subdir=git/prebuilt;name=prebuilt \ |
10 | file://older-glibc-symbols.patch" | 10 | file://older-glibc-symbols.patch" |
11 | SRC_URI:append:class-nativesdk = " \ | ||
12 | http://downloads.yoctoproject.org/mirror/sources/pseudo-prebuilt-2.33.tar.xz;subdir=git/prebuilt;name=prebuilt \ | ||
13 | file://older-glibc-symbols.patch" | ||
11 | SRC_URI[prebuilt.sha256sum] = "ed9f456856e9d86359f169f46a70ad7be4190d6040282b84c8d97b99072485aa" | 14 | SRC_URI[prebuilt.sha256sum] = "ed9f456856e9d86359f169f46a70ad7be4190d6040282b84c8d97b99072485aa" |
12 | 15 | ||
13 | SRCREV = "b988b0a6b8afd8d459bc9a2528e834f63a3d59b2" | 16 | SRCREV = "b988b0a6b8afd8d459bc9a2528e834f63a3d59b2" |