diff options
author | Michal Sekletar <msekleta@redhat.com> | 2024-07-09 15:21:34 +0200 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2024-08-06 18:32:42 +0200 |
commit | 68511cebe58977ea68ae4f57c6462e979efd1cff (patch) | |
tree | 9fb9445b00cd0b8f810dbb24220fc1e52043dc90 /meson.build | |
parent | sysusers: check if requested group name matches user name in queue (diff) | |
download | systemd-68511cebe58977ea68ae4f57c6462e979efd1cff.tar.xz systemd-68511cebe58977ea68ae4f57c6462e979efd1cff.zip |
coredump: generate properly symbolized stacktrace for containerized processes
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meson.build b/meson.build index c0eb6ca437..09e7c81c59 100644 --- a/meson.build +++ b/meson.build @@ -1389,6 +1389,10 @@ conf.set10('HAVE_ELFUTILS', libdw.found()) conf.set10('HAVE_DWELF_ELF_E_MACHINE_STRING', libdw.found() and cc.has_function('dwelf_elf_e_machine_string', dependencies : libdw)) +# New in elfutils 0.192 +conf.set10('HAVE_DWFL_SET_SYSROOT', + libdw.found() and cc.has_function('dwfl_set_sysroot', dependencies : libdw)) + libz = dependency('zlib', required : get_option('zlib')) conf.set10('HAVE_ZLIB', libz.found()) |