package/nbd: add option for the trdump utility
[buildroot-gz.git] / package / libsigsegv / Config.in
blobf258dc9e8a768b007f257859066eb2a75f8f8f4b
1 config BR2_PACKAGE_LIBSIGSEGV_ARCH_SUPPORTS
2         bool
3         # with glibc/musl, ucontext is available for all supported
4         # architectures
5         default y if BR2_TOOLCHAIN_USES_GLIBC
6         default y if BR2_TOOLCHAIN_USES_MUSL
7         # with uclibc, ucontext is only available for a subset of the
8         # supported architectures
9         default y if BR2_TOOLCHAIN_USES_UCLIBC && \
10                 (BR2_ARM_CPU_HAS_ARM || BR2_i386 || \
11                  BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el || \
12                  BR2_sparc || BR2_x86_64)
14 config BR2_PACKAGE_LIBSIGSEGV
15         bool "libsigsegv"
16         depends on BR2_PACKAGE_LIBSIGSEGV_ARCH_SUPPORTS
17         help
18           Library for handling page faults in user mode.
20           http://www.gnu.org/software/libsigsegv/