diff --git a/elfutils-debuginfod.changes b/elfutils-debuginfod.changes index a86580a..8f99860 100644 --- a/elfutils-debuginfod.changes +++ b/elfutils-debuginfod.changes @@ -1,3 +1,29 @@ +------------------------------------------------------------------- +Tue May 21 15:45:51 UTC 2024 - Michael Matz + +- Add "-g" to %optflags, so that the tests work in all repos, + with or without globally enabled debuginfo creation. + +------------------------------------------------------------------- +Sun Mar 17 17:39:35 UTC 2024 - Dirk Müller + +- update to 0.191: + * libdw: dwarf_addrdie now supports binaries lacking a + .debug_aranges section. + * Improved support for DWARF package files. Add new + function dwarf_cu_dwp_section_info. + * debuginfod: Caching eviction logic improvements to improve + retention of small/frequent/slow files such as Fedora's + vdso.debug. + * srcfiles: Can now fetch the source files of a DWARF/ELF file + and place them into a zip. +- drop fix_gcc14_errors.patch (upstream) + +------------------------------------------------------------------- +Tue Mar 5 08:51:07 UTC 2024 - Michal Jireš + +- Add fix_gcc14_errors.patch (bsc#1220464) + ------------------------------------------------------------------- Tue Jan 9 08:47:09 UTC 2024 - Richard Biener diff --git a/elfutils-debuginfod.spec b/elfutils-debuginfod.spec index 4010998..dafdce4 100644 --- a/elfutils-debuginfod.spec +++ b/elfutils-debuginfod.spec @@ -130,8 +130,11 @@ URL for a distribution. %build %sysusers_generate_pre %{SOURCE4} %{name} %{name}.conf +# tests need debug info enabled (boo#1031556) but some repos don't +# do that by default. Some others do (when debuginfo is globally enabled) +# so just enable this always, for all compilations +%global optflags %{optflags} -g export CFLAGS="%optflags -Werror=date-time" -CFLAGS+=" -g" # tests need debug info enabled (boo#1031556) %ifarch %sparc # Small PIC model not sufficient CFLAGS+=" -fPIC" diff --git a/elfutils.changes b/elfutils.changes index a1e6745..58031be 100644 --- a/elfutils.changes +++ b/elfutils.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue May 21 15:45:51 UTC 2024 - Michael Matz + +- Add "-g" to %optflags, so that the tests work in all repos, + with or without globally enabled debuginfo creation. + ------------------------------------------------------------------- Sun Mar 17 17:39:35 UTC 2024 - Dirk Müller diff --git a/elfutils.spec b/elfutils.spec index 9870576..3a74469 100644 --- a/elfutils.spec +++ b/elfutils.spec @@ -152,8 +152,11 @@ The package is dummy. %build %global _lto_cflags %{_lto_cflags} -ffat-lto-objects +# tests need debug info enabled (boo#1031556) but some repos don't +# do that by default. Some others do (when debuginfo is globally enabled) +# so just enable this always, for all compilations +%global optflags %{optflags} -g export CFLAGS="%optflags -Werror=date-time" -CFLAGS+=" -g" # tests need debug info enabled (boo#1031556) %ifarch %sparc # Small PIC model not sufficient CFLAGS+=" -fPIC"