Config.in.libc.choice 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. choice
  4. prompt "C library"
  5. config ADK_TARGET_LIB_UCLIBC_NG
  6. bool "uClibc-ng embedded C library"
  7. depends on \
  8. !ADK_TARGET_ARCH_AARCH64 && \
  9. !ADK_TARGET_ARCH_ALPHA && \
  10. !ADK_TARGET_ARCH_HPPA && \
  11. !ADK_TARGET_ARCH_NIOS2 && \
  12. !ADK_TARGET_ARCH_SPARC64 && \
  13. !ADK_TARGET_ARCH_PPC64 && \
  14. !ADK_TARGET_ARCH_TILE
  15. help
  16. http://uclibc-ng.org
  17. config ADK_TARGET_LIB_MUSL
  18. bool "musl C library"
  19. depends on !ADK_TARGET_UCLINUX
  20. depends on \
  21. ADK_TARGET_ARCH_AARCH64 || \
  22. ADK_TARGET_ARCH_ARM || \
  23. ADK_TARGET_ARCH_MICROBLAZE || \
  24. ADK_TARGET_ARCH_MIPS || \
  25. ADK_TARGET_ARCH_OR1K || \
  26. ADK_TARGET_ARCH_PPC || \
  27. ADK_TARGET_ARCH_SH || \
  28. ADK_TARGET_ARCH_X86 || \
  29. ADK_TARGET_ARCH_X86_64
  30. help
  31. http://musl-libc.org
  32. config ADK_TARGET_LIB_GLIBC
  33. bool "GNU C library"
  34. depends on !ADK_TARGET_ARCH_ARC
  35. depends on !ADK_TARGET_ARCH_AVR32
  36. depends on !ADK_TARGET_ARCH_BFIN
  37. depends on !ADK_TARGET_ARCH_CRIS
  38. depends on !ADK_TARGET_ARCH_H8300
  39. depends on !ADK_TARGET_ARCH_OR1K
  40. depends on !ADK_TARGET_ARCH_XTENSA
  41. depends on !ADK_TARGET_UCLINUX
  42. depends on !ADK_TARGET_WITHOUT_MMU
  43. help
  44. http://www.gnu.org/libc
  45. endchoice
  46. choice
  47. prompt "C library version"
  48. config ADK_TARGET_LIB_UCLIBC_NG_1_0_6
  49. bool "1.0.6"
  50. depends on ADK_TARGET_LIB_UCLIBC_NG
  51. config ADK_TARGET_LIB_UCLIBC_NG_GIT
  52. bool "git"
  53. depends on ADK_TARGET_LIB_UCLIBC_NG
  54. config ADK_TARGET_LIB_GLIBC_2_22
  55. bool "2.22"
  56. depends on ADK_TARGET_LIB_GLIBC && !ADK_TARGET_ARCH_HPPA
  57. config ADK_TARGET_LIB_GLIBC_2_21
  58. bool "2.21"
  59. depends on ADK_TARGET_LIB_GLIBC && !ADK_TARGET_ARCH_HPPA
  60. config ADK_TARGET_LIB_GLIBC_2_20
  61. bool "2.20"
  62. depends on ADK_TARGET_LIB_GLIBC && !ADK_TARGET_ARCH_HPPA
  63. config ADK_TARGET_LIB_GLIBC_2_19
  64. bool "2.19"
  65. depends on ADK_TARGET_LIB_GLIBC && !ADK_TARGET_ARCH_HPPA
  66. config ADK_TARGET_LIB_GLIBC_GIT
  67. bool "git"
  68. depends on ADK_TARGET_LIB_GLIBC
  69. config ADK_TARGET_LIB_MUSL_1_1_11
  70. bool "1.1.11"
  71. depends on ADK_TARGET_LIB_MUSL
  72. config ADK_TARGET_LIB_MUSL_GIT
  73. bool "git"
  74. depends on ADK_TARGET_LIB_MUSL
  75. endchoice
  76. choice
  77. prompt "Threading"
  78. depends on ADK_TARGET_LIB_UCLIBC_NG && !ADK_TARGET_WITHOUT_THREADS
  79. config ADK_TARGET_LIB_WITH_THREADS
  80. bool "enable threads"
  81. config ADK_TARGET_LIB_WITHOUT_THREADS
  82. bool "disable threads"
  83. endchoice