* gdb-container-rh-pkg.patch - Patches added (bsc#1207712): * gdb-testsuite-add-gdb.suse-debranding.exp.patch - Patches added (test-case fix): * gdb-testsuite-fix-gdb.dwarf2-dw2-dir-file-name.exp-w.patch - Patches added (fedora patch fixup): * fixup-gdb-test-dw2-aranges.patch - Patches added (master backports): * gdb-testsuite-add-xfail-in-gdb.arch-i386-pkru.exp.patch * gdb-testsuite-add-xfail-in-gdb.python-py-record-btra.patch * gdb-testsuite-factor-out-proc-linux_kernel_version.patch * gdb-testsuite-fix-gdb.base-infoline-reloc-main-from-.patch * gdb-testsuite-fix-gdb.base-nested-subp-2-3-.exp-with.patch * gdb-testsuite-fix-gdb.threads-schedlock.exp-on-fast-.patch * gdb-testsuite-handle-missing-.note.gnu-stack.patch * gdb-testsuite-simplify-gdb.arch-amd64-disp-step-avx..patch * gdb-testsuite-fix-gdb.threads-schedlock.exp-for-gcc-.patch * gdb-testsuite-add-xfail-case-in-gdb.python-py-record.patch * add-elfcompress_zstd.patch * binutils-gdb-support-zstd-compressed-debug-section.patch * fix-gdb-build-elf-support-check-lzstd.patch - Patches removed (dropped by fedora): * gdb-test-ivy-bridge.patch - Disable "BuildRequires: %{gcc}-fortran" for SLE-11. - Maintenance script qa-local.sh: * Add SLE-11 to configs. * Build with --no-verify. - Maintenance script qa.sh: * Add -sle11. OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gdb?expand=0&rev=347
30 lines
955 B
Diff
30 lines
955 B
Diff
From f41928feb3e44fb27776afa062a1cd06263b7d1d Mon Sep 17 00:00:00 2001
|
|
From: Cary Coutant <ccoutant@gmail.com>
|
|
Date: Tue, 2 Aug 2022 16:19:43 -0700
|
|
Subject: [PATCH 1/2] Add ELFCOMPRESS_ZSTD.
|
|
|
|
include/elf/
|
|
* common.h: Add ELFCOMPRESS_ZSTD.
|
|
---
|
|
include/elf/common.h | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/include/elf/common.h b/include/elf/common.h
|
|
index 70d63e3299c..c409da2bd16 100644
|
|
--- a/include/elf/common.h
|
|
+++ b/include/elf/common.h
|
|
@@ -588,6 +588,8 @@
|
|
|
|
/* Compression types. */
|
|
#define ELFCOMPRESS_ZLIB 1 /* Compressed with zlib. */
|
|
+#define ELFCOMPRESS_ZSTD 2 /* Compressed with zstd */
|
|
+ /* (see http://www.zstandard.org). */
|
|
#define ELFCOMPRESS_LOOS 0x60000000 /* OS-specific semantics, lo */
|
|
#define ELFCOMPRESS_HIOS 0x6FFFFFFF /* OS-specific semantics, hi */
|
|
#define ELFCOMPRESS_LOPROC 0x70000000 /* Processor-specific semantics, lo */
|
|
|
|
base-commit: 835a10f8541c7c4150098c82e097c4f606475cfa
|
|
--
|
|
2.35.3
|
|
|