Config.in.libc.choice 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. select ADK_uclibc_ng
  8. depends on \
  9. !ADK_TARGET_ARCH_AARCH64 && \
  10. !ADK_TARGET_ARCH_ALPHA && \
  11. !ADK_TARGET_ARCH_NIOS2 && \
  12. !ADK_TARGET_ARCH_SPARC64 && \
  13. !ADK_TARGET_ARCH_PPC64 && \
  14. !ADK_TARGET_ARCH_TILE && \
  15. !ADK_x32
  16. help
  17. http://uclibc-ng.org
  18. config ADK_TARGET_LIB_MUSL
  19. bool "musl C library"
  20. select ADK_musl
  21. depends on !ADK_TARGET_UCLINUX
  22. depends on \
  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. select ADK_glibc
  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. select ADK_uclibc
  46. depends on \
  47. !ADK_TARGET_ARCH_AARCH64 && \
  48. !ADK_TARGET_ARCH_ALPHA && \
  49. !ADK_TARGET_ARCH_CRIS && \
  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. !ADK_x32
  56. help
  57. http://uclibc.org
  58. endchoice
  59. choice
  60. prompt "C library version"
  61. config ADK_TARGET_LIB_UCLIBC_NG_1_0_0
  62. bool "1.0.0"
  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_GIT
  74. bool "git"
  75. depends on ADK_TARGET_LIB_GLIBC
  76. config ADK_TARGET_LIB_UCLIBC_GIT
  77. bool "git"
  78. depends on ADK_TARGET_LIB_UCLIBC
  79. config ADK_TARGET_LIB_UCLIBC_0_9_33_2
  80. bool "0.9.33.2"
  81. depends on ADK_TARGET_LIB_UCLIBC
  82. config ADK_TARGET_LIB_MUSL_1_1_6
  83. bool "1.1.6"
  84. depends on ADK_TARGET_LIB_MUSL
  85. config ADK_TARGET_LIB_MUSL_GIT
  86. bool "git"
  87. depends on ADK_TARGET_LIB_MUSL
  88. endchoice