Config.in.libc.choice 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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_HPPA && \
  10. !ADK_TARGET_ARCH_NIOS2 && \
  11. !ADK_TARGET_ARCH_SPARC64 && \
  12. !ADK_TARGET_ARCH_PPC64 && \
  13. !ADK_TARGET_ARCH_TILE
  14. help
  15. http://uclibc-ng.org
  16. config ADK_TARGET_LIB_MUSL
  17. bool "musl C library"
  18. depends on !ADK_TARGET_UCLINUX
  19. depends on \
  20. ADK_TARGET_ARCH_AARCH64 || \
  21. ADK_TARGET_ARCH_ARM || \
  22. ADK_TARGET_ARCH_MICROBLAZE || \
  23. ADK_TARGET_ARCH_MIPS || \
  24. ADK_TARGET_ARCH_OR1K || \
  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_OR1K
  39. depends on !ADK_TARGET_ARCH_XTENSA
  40. depends on !ADK_TARGET_UCLINUX
  41. depends on !ADK_TARGET_WITHOUT_MMU
  42. help
  43. http://www.gnu.org/libc
  44. endchoice
  45. choice
  46. prompt "C library version"
  47. config ADK_TARGET_LIB_UCLIBC_NG_1_0_7
  48. bool "1.0.7"
  49. depends on ADK_TARGET_LIB_UCLIBC_NG
  50. config ADK_TARGET_LIB_UCLIBC_NG_1_0_6
  51. bool "1.0.6"
  52. depends on ADK_TARGET_LIB_UCLIBC_NG
  53. config ADK_TARGET_LIB_UCLIBC_NG_1_0_5
  54. bool "1.0.5"
  55. depends on ADK_TARGET_LIB_UCLIBC_NG
  56. config ADK_TARGET_LIB_UCLIBC_NG_GIT
  57. bool "git"
  58. depends on ADK_TARGET_LIB_UCLIBC_NG
  59. config ADK_TARGET_LIB_GLIBC_2_22
  60. bool "2.22"
  61. depends on ADK_TARGET_LIB_GLIBC && !ADK_TARGET_ARCH_HPPA
  62. config ADK_TARGET_LIB_GLIBC_2_21
  63. bool "2.21"
  64. depends on ADK_TARGET_LIB_GLIBC && !ADK_TARGET_ARCH_HPPA
  65. config ADK_TARGET_LIB_GLIBC_2_20
  66. bool "2.20"
  67. depends on ADK_TARGET_LIB_GLIBC && !ADK_TARGET_ARCH_HPPA
  68. config ADK_TARGET_LIB_GLIBC_GIT
  69. bool "git"
  70. depends on ADK_TARGET_LIB_GLIBC
  71. config ADK_TARGET_LIB_MUSL_1_1_11
  72. bool "1.1.11"
  73. depends on ADK_TARGET_LIB_MUSL
  74. config ADK_TARGET_LIB_MUSL_1_1_10
  75. bool "1.1.10"
  76. depends on ADK_TARGET_LIB_MUSL
  77. config ADK_TARGET_LIB_MUSL_1_1_9
  78. bool "1.1.9"
  79. depends on ADK_TARGET_LIB_MUSL
  80. config ADK_TARGET_LIB_MUSL_GIT
  81. bool "git"
  82. depends on ADK_TARGET_LIB_MUSL
  83. endchoice
  84. choice
  85. prompt "Threading"
  86. depends on ADK_TARGET_LIB_UCLIBC_NG && !ADK_TARGET_WITHOUT_THREADS
  87. config ADK_TARGET_LIB_WITH_THREADS
  88. bool "enable threads"
  89. config ADK_TARGET_LIB_WITHOUT_THREADS
  90. bool "disable threads"
  91. endchoice