]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/elfutils/Config.in
Rename BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS
[coffee/buildroot.git] / package / elfutils / Config.in
1 comment "elfutils needs a toolchain w/ largefile, wchar, dynamic library"
2         depends on !BR2_avr32
3         depends on !BR2_bfin
4         depends on !BR2_LARGEFILE || !BR2_USE_WCHAR || BR2_STATIC_LIBS
5
6 config BR2_PACKAGE_ELFUTILS
7         bool "elfutils"
8         select BR2_PACKAGE_ARGP_STANDALONE if BR2_TOOLCHAIN_USES_UCLIBC
9         select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
10         depends on BR2_LARGEFILE
11         depends on BR2_USE_WCHAR
12         depends on !BR2_STATIC_LIBS
13         # canonicalize_file_name() not available on uClibc 0.9.31, used
14         # only for AVR32
15         depends on !BR2_avr32
16         # build issue caused by the _ prefix used on blackfin for
17         # assembly symbols
18         depends on !BR2_bfin
19         help
20           Libraries/utilities to handle ELF objects (drop in
21           replacement for libelf).
22
23           Note that this option only installs the libraries, and not
24           the programs.
25
26           https://fedorahosted.org/elfutils
27
28 if BR2_PACKAGE_ELFUTILS
29
30 config BR2_PACKAGE_ELFUTILS_PROGS
31         bool "Install programs"
32         depends on BR2_TOOLCHAIN_USES_GLIBC
33         help
34           This option tells elfutils to not only install the libelf
35           libraries, but also the elfutils programs.
36
37 endif