Config.in.libc.choice 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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_XTENSA
  38. depends on !ADK_TARGET_UCLINUX
  39. help
  40. http://www.gnu.org/libc
  41. config ADK_TARGET_LIB_UCLIBC
  42. bool "uClibc embedded C library"
  43. depends on ADK_BROKEN
  44. depends on \
  45. !ADK_TARGET_ARCH_AARCH64 && \
  46. !ADK_TARGET_ARCH_ALPHA && \
  47. !ADK_TARGET_ARCH_CRIS && \
  48. !ADK_TARGET_ARCH_HPPA && \
  49. !ADK_TARGET_ARCH_MICROBLAZE && \
  50. !ADK_TARGET_ARCH_NIOS2 && \
  51. !ADK_TARGET_ARCH_SPARC64 && \
  52. !ADK_TARGET_ARCH_PPC64 && \
  53. !ADK_TARGET_ARCH_TILE
  54. help
  55. http://uclibc.org
  56. endchoice
  57. choice
  58. prompt "C library version"
  59. config ADK_TARGET_LIB_UCLIBC_NG_1_0_2
  60. bool "1.0.2"
  61. depends on ADK_TARGET_LIB_UCLIBC_NG
  62. config ADK_TARGET_LIB_UCLIBC_NG_1_0_1
  63. bool "1.0.1"
  64. depends on ADK_TARGET_LIB_UCLIBC_NG
  65. config ADK_TARGET_LIB_UCLIBC_NG_1_0_0
  66. bool "1.0.0"
  67. depends on ADK_TARGET_LIB_UCLIBC_NG
  68. config ADK_TARGET_LIB_UCLIBC_NG_GIT
  69. bool "git"
  70. depends on ADK_TARGET_LIB_UCLIBC_NG
  71. config ADK_TARGET_LIB_GLIBC_2_21
  72. bool "2.21"
  73. depends on ADK_TARGET_LIB_GLIBC
  74. config ADK_TARGET_LIB_GLIBC_2_20
  75. bool "2.20"
  76. depends on ADK_TARGET_LIB_GLIBC
  77. config ADK_TARGET_LIB_GLIBC_GIT
  78. bool "git"
  79. depends on ADK_TARGET_LIB_GLIBC
  80. config ADK_TARGET_LIB_UCLIBC_GIT
  81. bool "git"
  82. depends on ADK_TARGET_LIB_UCLIBC
  83. config ADK_TARGET_LIB_UCLIBC_0_9_33_2
  84. bool "0.9.33.2"
  85. depends on ADK_TARGET_LIB_UCLIBC
  86. config ADK_TARGET_LIB_MUSL_1_1_10
  87. bool "1.1.10"
  88. depends on ADK_TARGET_LIB_MUSL
  89. config ADK_TARGET_LIB_MUSL_GIT
  90. bool "git"
  91. depends on ADK_TARGET_LIB_MUSL
  92. endchoice
  93. choice
  94. prompt "Threading"
  95. depends on (ADK_TARGET_LIB_UCLIBC || ADK_TARGET_LIB_UCLIBC_NG) \
  96. && !ADK_TARGET_WITHOUT_THREADS
  97. config ADK_TARGET_LIB_WITH_THREADS
  98. bool "enable threads"
  99. config ADK_TARGET_LIB_WITHOUT_THREADS
  100. bool "disable threads"
  101. endchoice