kumquat-buildroot/package/kmemd/Config.in
Bernd Kuhls bf9583a502 package/elfutils: enable on musl
Buildroot commit eb60820c0a disabled
elfutils for musl toolchains in 2015. Current code builds fine with musl
so remove the exceptions.

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
[yann.morin.1998@free.fr:
  - move all libc-related conditional blocks together
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2023-10-22 18:02:32 +02:00

19 lines
617 B
Plaintext

config BR2_PACKAGE_KMEMD
bool "kmemd"
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libbpf
depends on BR2_USE_WCHAR # libbpf
depends on !BR2_STATIC_LIBS # libbpf
depends on BR2_TOOLCHAIN_HAS_THREADS # libbpf
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_14
select BR2_PACKAGE_LIBBPF
help
Explore a live Linux kernel's memory using GDB
https://github.com/wkz/kmemd
comment "kmemd needs a toolchain w/ wchar, dynamic library, threads, headers >= 5.14"
depends on BR2_TOOLCHAIN_HAS_SYNC_4
depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS \
|| !BR2_TOOLCHAIN_HAS_THREADS \
|| !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_13