mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 21:32:12 +02:00
gcompat: Do not use static-pie on ppc
It fails currently with binutils 2.38 powerpc-yoe-linux-musl-ld: read-only segment has dynamic relocations (From OE-Core rev: 6a8c1e04e2bf37fa4128b1742ef4184380e3321d) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
From 01180e78fe9568e7fb2673ba61801c42f0f70115 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Fri, 11 Mar 2022 10:37:51 -0800
|
||||
Subject: [PATCH] make: Static PIE does not work on musl/ppc
|
||||
|
||||
Fixes linker error e.g.
|
||||
"read-only segment has dynamic relocations"
|
||||
|
||||
Upstream-Status: Inappropriate [OE specific]
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
Makefile | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
index cbb7634..69ee228 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -76,7 +76,7 @@ ${LIBGCOMPAT_NAME}: ${LIBGCOMPAT_OBJ}
|
||||
${LIBGCOMPAT_OBJ}: ${LIBGCOMPAT_INCLUDE}
|
||||
|
||||
${LOADER_NAME}: ${LOADER_OBJ}
|
||||
- ${CC} ${CFLAGS} ${LDFLAGS} -static-pie -o ${LOADER_NAME} ${LOADER_OBJ}
|
||||
+ ${CC} ${CFLAGS} ${LDFLAGS} -static -o ${LOADER_NAME} ${LOADER_OBJ}
|
||||
|
||||
.c.o:
|
||||
${CC} ${CPPFLAGS} ${CFLAGS} -c -D_BSD_SOURCE \
|
||||
--
|
||||
2.35.1
|
||||
|
||||
@@ -7,8 +7,11 @@ HOMEPAGE = "https://git.adelielinux.org/adelie/gcompat"
|
||||
LICENSE = "NCSA"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=eb33ef4af05a9c7602843afb7adfe792"
|
||||
|
||||
SRC_URI = "git://git.adelielinux.org/adelie/gcompat.git;protocol=https;branch=current"
|
||||
|
||||
SRC_URI = "git://git.adelielinux.org/adelie/gcompat.git;protocol=https;branch=current \
|
||||
"
|
||||
SRC_URI:append:powerpc = "\
|
||||
file://0001-make-Static-PIE-does-not-work-on-musl-ppc.patch \
|
||||
"
|
||||
PV = "1.0.0+1.1+git${SRCPV}"
|
||||
SRCREV = "4d6a5156a6eb7f56b30d93853a872e36dadde81b"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user