1
0
Fork 0
mirror of https://sourceware.org/git/elfutils.git synced 2026-09-19 15:44:19 +00:00
No description
  • C 69.2%
  • Shell 22.8%
  • C++ 4.2%
  • Makefile 1.4%
  • M4 1.4%
  • Other 0.9%
Find a file
Matej Smycka 4f5b7ac6bf unstrip: Basename core module name when building -d output path
handle_output_dir_module builds each module's output file as
"OUTDIR/NAME".  For a core file NAME is the raw DT_SONAME reported by
libdwfl (dwfl_segment_report_module) with no basename applied, so a
DT_SONAME like "../../../path" makes eu-unstrip -a -m -d OUTDIR write
the reconstructed module image outside OUTDIR.  Basename the name when
joining it, as -m already implies and as link_map.c and core-file.c do.

	* src/unstrip.c (handle_output_dir_module): Use xbasename on the
	module name.

Signed-off-by: Matej Smycka <matejsmycka@gmail.com>
2026-09-10 18:27:19 +02:00
.forgejo/workflows src/stacktrace.c: remove in favour of stackprof 2026-08-13 17:09:22 -04:00
backends backends: use <sys/uio.h> instead of <linux/uio.h> for struct iovec 2026-08-18 15:04:44 -04:00
config Add THREAD-SAFETY document 2026-09-07 21:39:20 -04:00
debuginfod PR34566: debuginfod-client: also call progressfn before committing to a server 2026-09-04 15:54:40 -04:00
doc doc/stackprof.1: add man page and NEWS for stackprof 2026-08-13 17:09:15 -04:00
lib elfcompress: Handle existing output files (symlinks) 2026-06-19 00:53:59 +02:00
libasm build: Rename pic objects to _.os to support -gsplit-dwarf 2026-07-24 11:28:30 +02:00
libcpu build: Rename pic objects to _.os to support -gsplit-dwarf 2026-07-24 11:28:30 +02:00
libdw libdw: Bound intern_new_cie augmentation reads to augmentation_data_size 2026-09-10 17:20:17 +02:00
libdwelf libdwelf: Add dwelf_dwarf_debug_dwp and dwelf_dwarf_debug_sup functions 2026-08-14 13:07:40 +02:00
libdwfl libdwfl: Handle kernel module sections absent from sysfs 2026-08-13 19:13:32 -04:00
libdwfl_stacktrace dwflst_sample_frame.c: fix dwflst_arch_expected_frame_nregs 2026-08-14 10:44:58 -04:00
libebl eblinitreg_sample.c: guard ebl_set_initial_registers_sample 2026-08-13 17:07:25 -04:00
libelf libelf: Bound ZSTD decompression output size like the zlib path 2026-09-09 13:43:19 +02:00
m4 Update minimum C compiler supported to C11 plus stdatomic.h 2025-01-11 00:19:28 +01:00
po Prepare for 0.196 2026-08-14 15:49:15 -04:00
src unstrip: Basename core module name when building -d output path 2026-09-10 18:27:19 +02:00
tests tests: match __raise_direct in backtrace tests 2026-09-08 14:07:09 +02:00
.gitignore Replace usage of ar with stored library manifest files 2025-01-21 18:57:34 +01:00
.mailmap AUTHORS: Use generator script & git mailmap 2022-04-24 19:39:47 -04:00
AUTHORS AUTHORS: Use generator script & git mailmap 2022-04-24 19:39:47 -04:00
AUTHORS.sh AUTHORS: Use generator script & git mailmap 2022-04-24 19:39:47 -04:00
ChangeLog readelf: display dynamic symtab without section headers 2023-04-18 21:46:53 +02:00
CONDUCT Update code of conduct 2024-06-07 14:06:53 -04:00
configure.ac Prepare for 0.196 2026-08-14 15:49:15 -04:00
CONTRIBUTING CONTRIBUTING: Add Policy on the Use of LLM-generated Content 2026-02-17 15:13:11 -05:00
COPYING Update name, license and contributor policy. 2012-06-05 23:12:05 +02:00
COPYING-GPLV2 Update name, license and contributor policy. 2012-06-05 23:12:05 +02:00
COPYING-LGPLV3 Update name, license and contributor policy. 2012-06-05 23:12:05 +02:00
GPG-KEY GPG-KEY: Add key for Aaron Merey 2024-03-01 18:10:33 +01:00
Makefile.am Add THREAD-SAFETY document 2026-09-07 21:39:20 -04:00
NEWS Prepare for 0.196 2026-08-14 15:49:15 -04:00
NOTES Fix spelling typos in NEWS, NOTES, TODO, and in comments of configure.ac 2020-12-12 18:06:28 +01:00
README SECURITY: new file 2023-07-03 10:25:40 -04:00
SECURITY SECURITY: new file 2023-07-03 10:25:40 -04:00
THANKS More correct info on contributors. 2009-01-10 18:17:09 -08:00
THREAD-SAFETY Add THREAD-SAFETY document 2026-09-07 21:39:20 -04:00
TODO Fix spelling typos in NEWS, NOTES, TODO, and in comments of configure.ac 2020-12-12 18:06:28 +01:00

The elfutils project provides libraries and tools for ELF files and DWARF data.

The project home is http://elfutils.org/

Releases are published at ftp://sourceware.org/pub/elfutils/
Which can also be found at https://sourceware.org/elfutils/ftp/

To build a release do: ./configure && make && make check
Please check the configure summary to make sure all recommended
features are enabled. There should be no failures after make check.

Please reports bugs at https://sourceware.org/bugzilla/

The current elfutils source code can be checked out with
git clone git://sourceware.org/git/elfutils.git

To build a git checkout do:
  autoreconf -i -f && \
  ./configure --enable-maintainer-mode && \
  make && make check

The developer mailinglist to send patches to is
elfutils-devel@sourceware.org.
https://sourceware.org/ml/elfutils-devel/

To subscribe send an email to elfutils-devel-subscribe@sourceware.org
Or use the form at https://sourceware.org/mailman/listinfo/elfutils-devel

See the CONTRIBUTING file for how to propose patches to the code.

See the NOTES files for some design decisions and notes.

See the SECURITY file for defining and handling security-sensitive bugs.