Config.in.libc.choice 2.9 KB

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