123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- choice
- prompt "C library"
- config ADK_TARGET_LIB_UCLIBC_NG
- bool "uClibc-ng embedded C library"
- select ADK_uclibc_ng
- depends on \
- !ADK_TARGET_ARCH_AARCH64 && \
- !ADK_TARGET_ARCH_ALPHA && \
- !ADK_TARGET_ARCH_NIOS2 && \
- !ADK_TARGET_ARCH_SPARC64 && \
- !ADK_TARGET_ARCH_PPC64 && \
- !ADK_TARGET_ARCH_TILE && \
- !ADK_x32
- help
- http://uclibc-ng.org
- config ADK_TARGET_LIB_MUSL
- bool "musl C library"
- select ADK_musl
- depends on !ADK_TARGET_UCLINUX
- depends on \
- ADK_TARGET_ARCH_ARM || \
- ADK_TARGET_ARCH_MICROBLAZE || \
- ADK_TARGET_ARCH_MIPS || \
- ADK_TARGET_ARCH_PPC || \
- ADK_TARGET_ARCH_SH || \
- ADK_TARGET_ARCH_X86 || \
- ADK_TARGET_ARCH_X86_64
- help
- http://musl-libc.org
- config ADK_TARGET_LIB_GLIBC
- bool "GNU C library"
- select ADK_glibc
- depends on !ADK_TARGET_ARCH_ARC
- depends on !ADK_TARGET_ARCH_AVR32
- depends on !ADK_TARGET_ARCH_BFIN
- depends on !ADK_TARGET_ARCH_CRIS
- depends on !ADK_TARGET_ARCH_XTENSA
- depends on !ADK_TARGET_UCLINUX
- help
- http://www.gnu.org/libc
- config ADK_TARGET_LIB_UCLIBC
- bool "uClibc embedded C library"
- select ADK_uclibc
- depends on \
- !ADK_TARGET_ARCH_AARCH64 && \
- !ADK_TARGET_ARCH_ALPHA && \
- !ADK_TARGET_ARCH_CRIS && \
- !ADK_TARGET_ARCH_MICROBLAZE && \
- !ADK_TARGET_ARCH_NIOS2 && \
- !ADK_TARGET_ARCH_SPARC64 && \
- !ADK_TARGET_ARCH_PPC64 && \
- !ADK_TARGET_ARCH_TILE && \
- !ADK_x32
- help
- http://uclibc.org
- endchoice
- choice
- prompt "C library version"
- config ADK_TARGET_LIB_UCLIBC_NG_1_0_0
- bool "1.0.0"
- depends on ADK_TARGET_LIB_UCLIBC_NG
- config ADK_TARGET_LIB_UCLIBC_NG_GIT
- bool "git"
- depends on ADK_TARGET_LIB_UCLIBC_NG
- config ADK_TARGET_LIB_GLIBC_2_21
- bool "2.21"
- depends on ADK_TARGET_LIB_GLIBC
- config ADK_TARGET_LIB_GLIBC_2_20
- bool "2.20"
- depends on ADK_TARGET_LIB_GLIBC
- config ADK_TARGET_LIB_GLIBC_GIT
- bool "git"
- depends on ADK_TARGET_LIB_GLIBC
- config ADK_TARGET_LIB_UCLIBC_GIT
- bool "git"
- depends on ADK_TARGET_LIB_UCLIBC
- config ADK_TARGET_LIB_UCLIBC_0_9_33_2
- bool "0.9.33.2"
- depends on ADK_TARGET_LIB_UCLIBC
- config ADK_TARGET_LIB_MUSL_1_1_6
- bool "1.1.6"
- depends on ADK_TARGET_LIB_MUSL
- config ADK_TARGET_LIB_MUSL_GIT
- bool "git"
- depends on ADK_TARGET_LIB_MUSL
- endchoice
|