From fee7d7d02ade711ae48b3c9adc484a8dfdeece08 Mon Sep 17 00:00:00 2001 From: vxtls <187420201+vxtls@users.noreply.github.com> Date: Sun, 22 Feb 2026 13:00:58 -0500 Subject: [PATCH] fix(elfutils): build static-only to avoid libelf.so TEXTREL failures with static zlib --- steps-guix/elfutils-0.194/pass1.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/steps-guix/elfutils-0.194/pass1.sh b/steps-guix/elfutils-0.194/pass1.sh index 964c4649..db437e53 100644 --- a/steps-guix/elfutils-0.194/pass1.sh +++ b/steps-guix/elfutils-0.194/pass1.sh @@ -32,6 +32,8 @@ src_configure() { --includedir="${KERNEL_SYSROOT}/include" \ --build="${TARGET}" \ --host="${TARGET}" \ + --disable-shared \ + --enable-static \ --disable-debuginfod \ --disable-libdebuginfod }