]> Git Repo - buildroot-mgba.git/commitdiff
package/makedumpfile: enable build with musl libc
authorBaruch Siach <[email protected]>
Mon, 3 Jun 2024 06:12:44 +0000 (09:12 +0300)
committerPeter Korsgaard <[email protected]>
Tue, 4 Jun 2024 13:15:22 +0000 (15:15 +0200)
makedumpfile libc dependency is coming from elfutils. Commit
bf9583a50276f52 ("package/elfutils: enable on musl") removed elfutils
libc dependency. makedumpfile now builds fine with musl libc. Remove
its libc dependency.

Cc: Alexander Egorenkov <[email protected]>
Signed-off-by: Baruch Siach <[email protected]>
Signed-off-by: Peter Korsgaard <[email protected]>
package/makedumpfile/Config.in

index 62549f851fc0ec8b8e3612baf2b552390a6ade01..325a31d7b6c977d1cba2a8d6408901b21fe366e6 100644 (file)
@@ -8,11 +8,10 @@ config BR2_PACKAGE_MAKEDUMPFILE_ARCH_SUPPORTS
        default y if BR2_s390x
        default y if BR2_sparc64
 
-comment "makedumpfile needs a uClibc or glibc toolchain w/ wchar, dynamic library, threads"
+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 \
-               || !(BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC)
+               || !BR2_TOOLCHAIN_HAS_THREADS
 
 config BR2_PACKAGE_MAKEDUMPFILE
        bool "makedumpfile"
@@ -20,7 +19,6 @@ config BR2_PACKAGE_MAKEDUMPFILE
        depends on BR2_TOOLCHAIN_HAS_THREADS
        depends on !BR2_STATIC_LIBS # dlopen
        depends on BR2_USE_WCHAR
-       depends on BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC
        select BR2_PACKAGE_BZIP2
        select BR2_PACKAGE_ELFUTILS
        select BR2_PACKAGE_XZ
This page took 0.03508 seconds and 4 git commands to generate.