Fri, 29 Mar 2024 12:47:24 UTC | login

Information for build dwarves-1.20-1.el9

ID354
Package Namedwarves
Version1.20
Release1.el9
Epoch
Sourcegit+https://gitlab.com/redhat/centos-stream/rpms/dwarves#836468ac988996055e059c20c6443ae194a69518
SummaryDebugging Information Manipulation Tools (pahole & friends)
Descriptiondwarves is a set of tools that use the debugging information inserted in ELF binaries by compilers such as GCC, used by well known debuggers such as GDB, and more recent ones such as systemtap. Utilities in the dwarves suite include pahole, that can be used to find alignment holes in structs and classes in languages such as C, C++, but not limited to these. It also extracts other information such as CPU cacheline alignment, helping pack those structures to achieve more cache hits. These tools can also be used to encode and read the BTF type information format used with the Linux kernel bpf syscall, using 'pahole -J' and 'pahole -F btf'. A diff like tool, codiff can be used to compare the effects changes in source code generate on the resulting binaries. Another tool is pfunct, that can be used to find all sorts of information about functions, inlines, decisions made by the compiler about inlining, etc. One example of pfunct usage is in the fullcircle tool, a shell that drivers pfunct to generate compileable code out of a .o file and then build it using gcc, with the same compiler flags, and then use codiff to make sure the original .o file and the new one generated from debug info produces the same debug info. Pahole also can be used to use all this type information to pretty print raw data according to command line directions. Headers can have its data format described from debugging info and offsets from it can be used to further format a number of records. The btfdiff utility compares the output of pahole from BTF and DWARF to make sure they produce the same results.
Built bytdawson
State complete
Volume DEFAULT
StartedFri, 12 Mar 2021 21:29:14 UTC
CompletedFri, 12 Mar 2021 21:37:41 UTC
Taskbuild (c9s-candidate, /redhat/centos-stream/rpms/dwarves:836468ac988996055e059c20c6443ae194a69518)
Extra{'source': {'original_url': 'git+https://gitlab.com/redhat/centos-stream/rpms/dwarves#836468ac988996055e059c20c6443ae194a69518'}}
Tags
c9s-pending
c9s-pending-signed
RPMs
src
dwarves-1.20-1.el9.src.rpm (info) (download)
aarch64
dwarves-1.20-1.el9.aarch64.rpm (info) (download)
libdwarves1-1.20-1.el9.aarch64.rpm (info) (download)
libdwarves1-devel-1.20-1.el9.aarch64.rpm (info) (download)
dwarves-debuginfo-1.20-1.el9.aarch64.rpm (info) (download)
dwarves-debugsource-1.20-1.el9.aarch64.rpm (info) (download)
libdwarves1-debuginfo-1.20-1.el9.aarch64.rpm (info) (download)
i686
dwarves-1.20-1.el9.i686.rpm (info) (download)
libdwarves1-1.20-1.el9.i686.rpm (info) (download)
libdwarves1-devel-1.20-1.el9.i686.rpm (info) (download)
dwarves-debuginfo-1.20-1.el9.i686.rpm (info) (download)
dwarves-debugsource-1.20-1.el9.i686.rpm (info) (download)
libdwarves1-debuginfo-1.20-1.el9.i686.rpm (info) (download)
ppc64le
dwarves-1.20-1.el9.ppc64le.rpm (info) (download)
libdwarves1-1.20-1.el9.ppc64le.rpm (info) (download)
libdwarves1-devel-1.20-1.el9.ppc64le.rpm (info) (download)
dwarves-debuginfo-1.20-1.el9.ppc64le.rpm (info) (download)
dwarves-debugsource-1.20-1.el9.ppc64le.rpm (info) (download)
libdwarves1-debuginfo-1.20-1.el9.ppc64le.rpm (info) (download)
s390x
dwarves-1.20-1.el9.s390x.rpm (info) (download)
libdwarves1-1.20-1.el9.s390x.rpm (info) (download)
libdwarves1-devel-1.20-1.el9.s390x.rpm (info) (download)
dwarves-debuginfo-1.20-1.el9.s390x.rpm (info) (download)
dwarves-debugsource-1.20-1.el9.s390x.rpm (info) (download)
libdwarves1-debuginfo-1.20-1.el9.s390x.rpm (info) (download)
x86_64
dwarves-1.20-1.el9.x86_64.rpm (info) (download)
libdwarves1-1.20-1.el9.x86_64.rpm (info) (download)
libdwarves1-devel-1.20-1.el9.x86_64.rpm (info) (download)
dwarves-debuginfo-1.20-1.el9.x86_64.rpm (info) (download)
dwarves-debugsource-1.20-1.el9.x86_64.rpm (info) (download)
libdwarves1-debuginfo-1.20-1.el9.x86_64.rpm (info) (download)
Logs
aarch64
build.log
hw_info.log
installed_pkgs.log
mock_output.log
root.log
state.log
i686
build.log
hw_info.log
installed_pkgs.log
mock_output.log
root.log
state.log
ppc64le
build.log
hw_info.log
installed_pkgs.log
mock_output.log
root.log
state.log
s390x
build.log
hw_info.log
installed_pkgs.log
mock_output.log
root.log
state.log
x86_64
build.log
hw_info.log
installed_pkgs.log
mock_output.log
root.log
state.log
Changelog * Tue Feb 02 2021 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.20-1 - New release: v1.20 - btf_encoder: - Improve ELF error reporting using elf_errmsg(elf_errno()) - Improve objcopy error handling. - Fix handling of 'restrict' qualifier, that was being treated as a 'const'. - Support SHN_XINDEX in st_shndx symbol indexes - Cope with functions without a name - Fix BTF variable generation for kernel modules - Fix address size to match what is in the ELF file being processed. - Use kernel module ftrace addresses when finding which functions to encode. - libbpf: - Allow use of packaged version. - dwarf_loader: - Support DW_AT_data_bit_offset - DW_FORM_implicit_const in attr_numeric() and attr_offset() - Support DW_TAG_GNU_call_site, standardized rename of DW_TAG_GNU_call_site. - build: - Fix compilation on 32-bit architectures. * Fri Nov 20 2020 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.19-1 - New release: 1.19 - Split BTF - DWARF workarounds for DW_AT_declaration - Support cross-compiled ELF binaries with different endianness - Support showing typedefs for anonymous types - Speedups using libbpf algorithms - See changes-v1.19 for a complete and more detailed list of changes * Fri Oct 02 2020 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.18-1 - New release: 1.18 - Use debugging info to pretty print raw data - Store percpu variables in vmlinux BTF. - Fixes to address segfaults on the gdb testsuite binaries - Bail out on partial units for now, avoiding segfaults and providing warning to user. * Mon Aug 31 2020 - Zamir SUN <sztsian@gmail.com> - 1.17-4 - Fix FTBFS - Resolves: bug 1863459 * Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.17-3 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild * Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild * Fri Mar 13 2020 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.17-1 - New release: 1.17 - Support raw BTF as available in /sys/kernel/btf/vmlinux. - When the sole argument passed isn't a file, take it as a class name: - Do not require a class name to operate without a file name. - Make --find_pointers_to consider unions: - Make --contains and --find_pointers_to honour --unions - Add support for finding pointers to void: - Make --contains and --find_pointers_to to work with base types: - Make --contains look for more than just unions, structs: - Consider unions when looking for classes containing some class: - Introduce --unions to consider just unions: - Fix -m/--nr_methods - Number of functions operating on a type pointer * Wed Feb 12 2020 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.16-1 - New release: 1.16 - BTF encoder: Preserve and encode exported functions as BTF_KIND_FUNC. - BTF loader: Add support for BTF_KIND_FUNC - Pretty printer: Account inline type __aligned__ member types for spacing - Pretty printer: Fix alignment of class members that are structs/enums/unions - Pretty printer: Avoid infinite loop trying to determine type with static data member of its own type. - RPM spec file: Add dwarves dependency on libdwarves1. - pfunct: type->type == 0 is void, fix --compile for that - pdwtags: Print DW_TAG_subroutine_type as well - core: Fix ptr_table__add_with_id() handling of pt->nr_entries - pglobal: Allow passing the format path specifier, to use with BTF - Tree wide: Fixup issues pointed out by various coverity reports. * Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild * Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild * Mon Jul 01 2019 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.15-2 - Fix bug when processing classes without members * Thu Jun 27 2019 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.15-1 - New release: 1.15 - Fix --expand_types/-E segfault - Fixup endless printing named structs inside structs in --expand_types - Avoid NULL deref with num config in __class__fprintf() * Tue Apr 23 2019 Arnaldo Carvalho de Melo <acme@redhat.com> - 1.13-1 - New release: 1.13 - Infer __packed__ attributes, i.e. __attribute__((__packed__)) - Support DW_AT_alignment, i.e. __attribute__((__aligned__(N))) - Decode BTF type format and pretty print it - BTF encoding fixes - Use libbpf's BTF deduplication - Support unions as arguments to -C/--class - New 'pfunct --compile' generates compilable output with type definitions