From: Michael Tremer Date: Tue, 31 Dec 2024 12:22:44 +0000 (+0000) Subject: stripper: (Re-)compress all debug information using Zstandard X-Git-Tag: 0.9.30~634 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=146db1fe5b9e5931ff5f09238e4c5ccf915e0911;p=pakfire.git stripper: (Re-)compress all debug information using Zstandard Signed-off-by: Michael Tremer --- diff --git a/src/libpakfire/stripper.c b/src/libpakfire/stripper.c index 916f09fbe..5d524aa2f 100644 --- a/src/libpakfire/stripper.c +++ b/src/libpakfire/stripper.c @@ -435,6 +435,10 @@ static int pakfire_stripper_strip_debug_sections(struct pakfire_stripper* stripp const char* extract_argv[] = { "objcopy", "--only-keep-debug", + + // (Re-)compress everything using Zstandard + "--compress-debug-sections=zstd", + pakfire_relpath(stripper->pakfire, path), pakfire_relpath(stripper->pakfire, build_id_path), NULL,