Config.in.libc.choice 2.7 KB

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