summaryrefslogtreecommitdiff
path: root/target/config/Config.in.libc.choice
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-05-23 16:39:17 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-05-23 16:39:17 +0200
commit2735fdf97305e110eba8e776f8728a52ae886c05 (patch)
tree0ce26ce1066bd7260625ca641b1e64c99015f47f /target/config/Config.in.libc.choice
parent65c2ab93616bdf982152a94ab35c2079a5e3a2d7 (diff)
resolve merge conflict
Diffstat (limited to 'target/config/Config.in.libc.choice')
-rw-r--r--target/config/Config.in.libc.choice44
1 files changed, 44 insertions, 0 deletions
diff --git a/target/config/Config.in.libc.choice b/target/config/Config.in.libc.choice
new file mode 100644
index 000000000..e6fe7ec98
--- /dev/null
+++ b/target/config/Config.in.libc.choice
@@ -0,0 +1,44 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+choice
+prompt "Target C library"
+depends on !ADK_CHOOSE_TARGET_SYSTEM && !ADK_CHOOSE_TARGET_ARCH
+config ADK_TARGET_LIB_UCLIBC
+ prompt "uClibc embedded C library"
+ boolean
+ select ADK_uclibc
+ depends on \
+ !ADK_LINUX_AARCH64 && \
+ !ADK_LINUX_M68K && \
+ !ADK_LINUX_MICROBLAZE && \
+ !ADK_LINUX_SPARC64 && \
+ !ADK_LINUX_PPC64 && \
+ !ADK_x32
+ help
+ http://uclibc.org
+
+config ADK_TARGET_LIB_GLIBC
+ prompt "GNU C library"
+ boolean
+ select ADK_glibc
+ help
+ http://www.gnu.org/libc
+
+config ADK_TARGET_LIB_MUSL
+ prompt "musl C library"
+ boolean
+ select ADK_musl
+ depends on !ADK_LINUX_MIPS64
+ depends on \
+ ADK_LINUX_ARM || \
+ ADK_LINUX_MICROBLAZE || \
+ ADK_LINUX_MIPS || \
+ ADK_LINUX_PPC || \
+ ADK_LINUX_SH || \
+ ADK_LINUX_X86 || \
+ ADK_LINUX_X86_64
+ help
+ http://musl-libc.org
+
+endchoice