mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
makedumpfile libc dependency is coming from elfutils. Commit
bf9583a502 ("package/elfutils: enable on musl") removed elfutils
libc dependency. makedumpfile now builds fine with musl libc. Remove
its libc dependency.
Cc: Alexander Egorenkov <egorenar-dev@posteo.net>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
30 lines
930 B
Plaintext
30 lines
930 B
Plaintext
config BR2_PACKAGE_MAKEDUMPFILE_ARCH_SUPPORTS
|
|
bool
|
|
default y if BR2_aarch64 || BR2_aarch64_be
|
|
default y if BR2_arm || BR2_armeb
|
|
default y if BR2_i386 || BR2_x86_64
|
|
default y if BR2_mips64 || BR2_mips64el
|
|
default y if BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le
|
|
default y if BR2_s390x
|
|
default y if BR2_sparc64
|
|
|
|
comment "makedumpfile needs a toolchain w/ wchar, dynamic library, threads"
|
|
depends on BR2_PACKAGE_MAKEDUMPFILE_ARCH_SUPPORTS
|
|
depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS \
|
|
|| !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
config BR2_PACKAGE_MAKEDUMPFILE
|
|
bool "makedumpfile"
|
|
depends on BR2_PACKAGE_MAKEDUMPFILE_ARCH_SUPPORTS
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on !BR2_STATIC_LIBS # dlopen
|
|
depends on BR2_USE_WCHAR
|
|
select BR2_PACKAGE_BZIP2
|
|
select BR2_PACKAGE_ELFUTILS
|
|
select BR2_PACKAGE_XZ
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
Makes a small dumpfile of kdump.
|
|
|
|
https://github.com/makedumpfile/makedumpfile
|