Compare commits
3 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| c051ea86f1 | |||
| 3eb34e7ad5 | |||
| 1ec835ac65 |
BIN
build.specials.obscpio
LFS
Normal file
BIN
build.specials.obscpio
LFS
Normal file
Binary file not shown.
@@ -1,7 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iHUEABYKAB0WIQR2GiIUctdOfX2qHhGyPKLppCJ+JwUCZmio+QAKCRCyPKLppCJ+
|
||||
JyE1AQD5BWhUPOeQEwVh/rBTXsc6uWZ34DBSsv0fV0eOXCVGTwD9FP/16dH1btvC
|
||||
C1PAX7DVCD2+G5Dama5ilsYG8oLnWA0=
|
||||
=NexU
|
||||
-----END PGP SIGNATURE-----
|
||||
BIN
dwarves-1.27.tar.xz
LFS
BIN
dwarves-1.27.tar.xz
LFS
Binary file not shown.
7
dwarves-1.31.tar.sign
Normal file
7
dwarves-1.31.tar.sign
Normal file
@@ -0,0 +1,7 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iHUEABYKAB0WIQR2GiIUctdOfX2qHhGyPKLppCJ+JwUCaRJgCwAKCRCyPKLppCJ+
|
||||
J4oaAP4o6FXXmUQXmuiEnaRXhRBIXQDBa0YBnzORgYxJ/cLTNwD+KI1EK7AbiwXs
|
||||
ecTIGTt4oWz4RXZWgUX/1UF3qp6nHw0=
|
||||
=jMdC
|
||||
-----END PGP SIGNATURE-----
|
||||
3
dwarves-1.31.tar.xz
Normal file
3
dwarves-1.31.tar.xz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0a7f255ccacf8cc7f8cd119099eb327179b4b3c67cb015af646af6d0cb03054d
|
||||
size 2350084
|
||||
@@ -1,3 +1,48 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 17 16:46:34 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 1.31:
|
||||
* btf_encoder: Move ambiguous_addr flag to elf_function
|
||||
* btf_encoder: Group all function ELF syms by function name
|
||||
* btf_encoder: Fix elf_functions cleanup on error
|
||||
* gitignore: Ignore all the test kmod build-related files
|
||||
* tests: Add some tests validating skipped
|
||||
functions due to uncertain arg location
|
||||
* btf_encoder: Skip functions consuming packed
|
||||
structs passed by value on stack
|
||||
* pahole: Do not return an error when printing only a specific
|
||||
class
|
||||
* pahole: Don't fail when encoding BTF on an object with no
|
||||
DWARF info
|
||||
* github CI: Add comparison of generated BTF functions between
|
||||
baseline, change
|
||||
* github CI: Do not build pahole as part of dwarves-ci setup
|
||||
* btf_loader: Fix smallest offset in case of bitfields
|
||||
* btf_loader: Infer alignment for zero-length arrays
|
||||
* CMakeLists.txt: Remove custom `LIB_INSTALL_DIR` handling
|
||||
* Fix pahole segfault with --show_reorg_steps option
|
||||
* pahole: Sync with libbpf mainline
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 5 19:42:00 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Update to release 1.30
|
||||
* dwarf_loader: Add support for DW_TAG_GNU_formal_parameter_pack
|
||||
and DW_TAG_GNU_template_parameter_pack.
|
||||
* dwarf_loader: Check DW_OP_[GNU_]entry_value for possible
|
||||
parameter matching.
|
||||
* pahole: Introduce new options --with_embedded_flexible_array
|
||||
and --btf_feature=attributes.
|
||||
* pahole: Add --padding N to show only structs with N bytes of
|
||||
padding at its end.
|
||||
* pahole: Add --padding_ge N to show only structs with at least N
|
||||
bytes of padding at its end.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 16 13:37:28 UTC 2025 - Jan Engelhardt <jengelh@inai.de>
|
||||
|
||||
- Make package build succeed with cmake 4.0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 1 08:35:14 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package dwarves
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -25,7 +25,7 @@
|
||||
%endif
|
||||
|
||||
Name: dwarves
|
||||
Version: 1.27
|
||||
Version: 1.31
|
||||
Release: 0
|
||||
Summary: DWARF utilities
|
||||
License: GPL-2.0-only
|
||||
@@ -104,12 +104,13 @@ for processing DWARF, a debugging data format for ELF files.
|
||||
%build
|
||||
sv="$PWD/lib.v"
|
||||
ver=$(echo %version | cut -d+ -f1)
|
||||
echo "DWARVES_$ver{ global: *; };" >"$sv"
|
||||
echo "DWARVES_$ver { global: *; };" >"$sv"
|
||||
%cmake \
|
||||
%if 0%{?have_libbpf}
|
||||
-DLIBBPF_EMBEDDED=OFF \
|
||||
%endif
|
||||
-DCMAKE_SHARED_LINKER_FLAGS:STRING="-Wl,--version-script=$sv"
|
||||
-DCMAKE_SHARED_LINKER_FLAGS:STRING="-Wl,--version-script=$sv" \
|
||||
-DCMAKE_POLICY_VERSION_MINIMUM=3.28
|
||||
%cmake_build
|
||||
|
||||
%install
|
||||
|
||||
Reference in New Issue
Block a user