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