Config.in.libc.choice 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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_OR1K && \
  13. !ADK_TARGET_ARCH_SPARC64 && \
  14. !ADK_TARGET_ARCH_PPC64 && \
  15. !ADK_TARGET_ARCH_TILE
  16. help
  17. http://uclibc-ng.org
  18. config ADK_TARGET_LIB_MUSL
  19. bool "musl C library"
  20. depends on !ADK_TARGET_UCLINUX
  21. depends on \
  22. ADK_TARGET_ARCH_AARCH64 || \
  23. ADK_TARGET_ARCH_ARM || \
  24. ADK_TARGET_ARCH_MICROBLAZE || \
  25. ADK_TARGET_ARCH_MIPS || \
  26. ADK_TARGET_ARCH_OR1K || \
  27. ADK_TARGET_ARCH_PPC || \
  28. ADK_TARGET_ARCH_SH || \
  29. ADK_TARGET_ARCH_X86 || \
  30. ADK_TARGET_ARCH_X86_64
  31. help
  32. http://musl-libc.org
  33. config ADK_TARGET_LIB_GLIBC
  34. bool "GNU C library"
  35. depends on !ADK_TARGET_ARCH_ARC
  36. depends on !ADK_TARGET_ARCH_AVR32
  37. depends on !ADK_TARGET_ARCH_BFIN
  38. depends on !ADK_TARGET_ARCH_CRIS
  39. depends on !ADK_TARGET_ARCH_H8300
  40. depends on !ADK_TARGET_ARCH_OR1K
  41. depends on !ADK_TARGET_ARCH_XTENSA
  42. depends on !ADK_TARGET_UCLINUX
  43. depends on !ADK_TARGET_WITHOUT_MMU
  44. help
  45. http://www.gnu.org/libc
  46. config ADK_TARGET_LIB_UCLIBC
  47. bool "uClibc embedded C library"
  48. depends on ADK_BROKEN
  49. depends on \
  50. !ADK_TARGET_ARCH_AARCH64 && \
  51. !ADK_TARGET_ARCH_ALPHA && \
  52. !ADK_TARGET_ARCH_CRIS && \
  53. !ADK_TARGET_ARCH_HPPA && \
  54. !ADK_TARGET_ARCH_MICROBLAZE && \
  55. !ADK_TARGET_ARCH_NIOS2 && \
  56. !ADK_TARGET_ARCH_SPARC64 && \
  57. !ADK_TARGET_ARCH_PPC64 && \
  58. !ADK_TARGET_ARCH_TILE
  59. help
  60. http://uclibc.org
  61. endchoice
  62. choice
  63. prompt "C library version"
  64. config ADK_TARGET_LIB_UCLIBC_NG_1_0_6
  65. bool "1.0.6"
  66. depends on ADK_TARGET_LIB_UCLIBC_NG
  67. config ADK_TARGET_LIB_UCLIBC_NG_GIT
  68. bool "git"
  69. depends on ADK_TARGET_LIB_UCLIBC_NG
  70. config ADK_TARGET_LIB_GLIBC_2_22
  71. bool "2.22"
  72. depends on ADK_TARGET_LIB_GLIBC && !ADK_TARGET_ARCH_HPPA
  73. config ADK_TARGET_LIB_GLIBC_2_21
  74. bool "2.21"
  75. depends on ADK_TARGET_LIB_GLIBC && !ADK_TARGET_ARCH_HPPA
  76. config ADK_TARGET_LIB_GLIBC_2_20
  77. bool "2.20"
  78. depends on ADK_TARGET_LIB_GLIBC && !ADK_TARGET_ARCH_HPPA
  79. config ADK_TARGET_LIB_GLIBC_2_19
  80. bool "2.19"
  81. depends on ADK_TARGET_LIB_GLIBC && !ADK_TARGET_ARCH_HPPA
  82. config ADK_TARGET_LIB_GLIBC_GIT
  83. bool "git"
  84. depends on ADK_TARGET_LIB_GLIBC
  85. config ADK_TARGET_LIB_UCLIBC_GIT
  86. bool "git"
  87. depends on ADK_TARGET_LIB_UCLIBC
  88. config ADK_TARGET_LIB_UCLIBC_0_9_33_2
  89. bool "0.9.33.2"
  90. depends on ADK_TARGET_LIB_UCLIBC
  91. config ADK_TARGET_LIB_MUSL_1_1_10
  92. bool "1.1.10"
  93. depends on ADK_TARGET_LIB_MUSL
  94. config ADK_TARGET_LIB_MUSL_GIT
  95. bool "git"
  96. depends on ADK_TARGET_LIB_MUSL
  97. endchoice
  98. choice
  99. prompt "Threading"
  100. depends on (ADK_TARGET_LIB_UCLIBC || ADK_TARGET_LIB_UCLIBC_NG) \
  101. && !ADK_TARGET_WITHOUT_THREADS
  102. config ADK_TARGET_LIB_WITH_THREADS
  103. bool "enable threads"
  104. config ADK_TARGET_LIB_WITHOUT_THREADS
  105. bool "disable threads"
  106. endchoice