kumquat-buildroot/package/libucontext/Config.in
James Hilliard 3a6e9d2f3f package/libucontext: new package
This package provides a ucontext.h C API on musl libc.

Architecture support table based on:
https://github.com/kaniini/libucontext/tree/libucontext-1.2#supported-features

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
2023-09-30 21:27:09 +02:00

34 lines
874 B
Plaintext

config BR2_PACKAGE_LIBUCONTEXT_ARCH_SUPPORTS
bool
default y if BR2_aarch64
default y if BR2_aarch64_be
default y if BR2_arm
default y if BR2_armeb
default y if BR2_m68k
default y if BR2_mips
default y if BR2_mipsel
default y if BR2_mips64
default y if BR2_mips64el
default y if BR2_or1k
default y if BR2_powerpc
default y if BR2_powerpc64
default y if BR2_powerpc64le
default y if BR2_riscv && BR2_RISCV_32
default y if BR2_riscv && BR2_RISCV_64
default y if BR2_s390x
default y if BR2_sh4
default y if BR2_sh4eb
default y if BR2_sh4a
default y if BR2_sh4aeb
default y if BR2_i386
default y if BR2_x86_64
depends on BR2_TOOLCHAIN_USES_MUSL
config BR2_PACKAGE_LIBUCONTEXT
bool "libucontext"
depends on BR2_PACKAGE_LIBUCONTEXT_ARCH_SUPPORTS
help
Ucontext implementation featuring glibc-compatible ABI.
https://github.com/kaniini/libucontext