summaryrefslogtreecommitdiffstats
path: root/rules/libelf.in
blob: 0abe93303675e02095a433c4e1218614855b3d89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
## SECTION=system_libraries

menuconfig LIBELF
	tristate
	prompt "libelf"
	select ZLIB
	help
	  The libelf1 package provides a shared library which allows reading
	  and writing ELF files on a high level.  Third party programs depend
	  on this package to read internals of ELF files.

if LIBELF

config LIBELF_LIBDW
	bool
	prompt "libdw"
	help
	  libdw1 provides a library that provides access to DWARF debug
	  information stored inside ELF files.

config LIBELF_LIBASM
	bool
	prompt "libasm"
	help
	  The libasm1 package provides a library with a programmable assembler
	  interface.  It allows you to create ELF files on a low level.

config LIBELF_ELFSUTILS
	bool
	prompt "elfutils"
	select LIBELF_LIBDW
	help
	  Elfutils is a collection of utilities to handle ELF objects.

endif