15ec3de799
Disable elfutils for avr32, because: - elfutils uses canonicalize_file_name, which came after uClibc-0.9.31. - avr32 uses a toolchain with uClibc-0.9.31 Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
32 lines
868 B
Plaintext
32 lines
868 B
Plaintext
comment "elfutils needs a toolchain w/ largefile, wchar"
|
|
depends on !BR2_LARGEFILE || !BR2_USE_WCHAR
|
|
|
|
config BR2_PACKAGE_ELFUTILS
|
|
bool "elfutils"
|
|
select BR2_PACKAGE_ARGP_STANDALONE if BR2_TOOLCHAIN_USES_UCLIBC
|
|
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
|
|
depends on BR2_LARGEFILE
|
|
depends on BR2_USE_WCHAR
|
|
# canonicalize_file_name() not available on uClibc 0.9.31, used
|
|
# only for AVR32
|
|
depends on !BR2_avr32
|
|
help
|
|
Libraries/utilities to handle ELF objects (drop in
|
|
replacement for libelf).
|
|
|
|
Note that this option only installs the libraries, and not
|
|
the programs.
|
|
|
|
https://fedorahosted.org/elfutils
|
|
|
|
if BR2_PACKAGE_ELFUTILS
|
|
|
|
config BR2_PACKAGE_ELFUTILS_PROGS
|
|
bool "Install programs"
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC
|
|
help
|
|
This option tells elfutils to not only install the libelf
|
|
libraries, but also the elfutils programs.
|
|
|
|
endif
|