Config.in.libc.choice 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. !ADK_x32
  17. help
  18. http://uclibc-ng.org
  19. config ADK_TARGET_LIB_MUSL
  20. bool "musl C library"
  21. depends on !ADK_TARGET_UCLINUX
  22. depends on \
  23. ADK_TARGET_ARCH_AARCH64 || \
  24. ADK_TARGET_ARCH_ARM || \
  25. ADK_TARGET_ARCH_MICROBLAZE || \
  26. ADK_TARGET_ARCH_MIPS || \
  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_XTENSA
  40. depends on !ADK_TARGET_UCLINUX
  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. !ADK_x32
  57. help
  58. http://uclibc.org
  59. endchoice
  60. choice
  61. prompt "C library version"
  62. config ADK_TARGET_LIB_UCLIBC_NG_1_0_2
  63. bool "1.0.2"
  64. depends on ADK_TARGET_LIB_UCLIBC_NG
  65. config ADK_TARGET_LIB_UCLIBC_NG_1_0_1
  66. bool "1.0.1"
  67. depends on ADK_TARGET_LIB_UCLIBC_NG
  68. config ADK_TARGET_LIB_UCLIBC_NG_1_0_0
  69. bool "1.0.0"
  70. depends on ADK_TARGET_LIB_UCLIBC_NG
  71. config ADK_TARGET_LIB_UCLIBC_NG_GIT
  72. bool "git"
  73. depends on ADK_TARGET_LIB_UCLIBC_NG
  74. config ADK_TARGET_LIB_GLIBC_2_21
  75. bool "2.21"
  76. depends on ADK_TARGET_LIB_GLIBC
  77. config ADK_TARGET_LIB_GLIBC_2_20
  78. bool "2.20"
  79. depends on ADK_TARGET_LIB_GLIBC
  80. config ADK_TARGET_LIB_GLIBC_GIT
  81. bool "git"
  82. depends on ADK_TARGET_LIB_GLIBC
  83. config ADK_TARGET_LIB_UCLIBC_GIT
  84. bool "git"
  85. depends on ADK_TARGET_LIB_UCLIBC
  86. config ADK_TARGET_LIB_UCLIBC_0_9_33_2
  87. bool "0.9.33.2"
  88. depends on ADK_TARGET_LIB_UCLIBC
  89. config ADK_TARGET_LIB_MUSL_1_1_8
  90. bool "1.1.8"
  91. depends on ADK_TARGET_LIB_MUSL
  92. config ADK_TARGET_LIB_MUSL_GIT
  93. bool "git"
  94. depends on ADK_TARGET_LIB_MUSL
  95. endchoice
  96. choice
  97. prompt "Threading"
  98. depends on ADK_TARGET_LIB_UCLIBC || ADK_TARGET_LIB_UCLIBC_NG
  99. config ADK_TARGET_LIB_WITH_THREADS
  100. bool "enable threads"
  101. config ADK_TARGET_LIB_WITHOUT_THREADS
  102. bool "disable threads"
  103. endchoice