Kconfig 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. # C library
  2. # Copyright (c) 2016 Intel Corporation
  3. # SPDX-License-Identifier: Apache-2.0
  4. menu "C Library"
  5. config REQUIRES_FULL_LIBC
  6. bool
  7. help
  8. Helper symbol to indicate some feature requires a C library implementation
  9. with more functionality than what MINIMAL_LIBC provides
  10. config SUPPORT_MINIMAL_LIBC
  11. bool
  12. default y
  13. choice LIBC_IMPLEMENTATION
  14. prompt "C Library Implementation"
  15. default EXTERNAL_LIBC if NATIVE_APPLICATION
  16. default NEWLIB_LIBC if REQUIRES_FULL_LIBC
  17. default MINIMAL_LIBC
  18. config MINIMAL_LIBC
  19. bool "Minimal C library"
  20. depends on !NATIVE_APPLICATION
  21. depends on !REQUIRES_FULL_LIBC
  22. depends on SUPPORT_MINIMAL_LIBC
  23. help
  24. Build with minimal C library.
  25. config NEWLIB_LIBC
  26. bool "Newlib C library"
  27. depends on !NATIVE_APPLICATION
  28. help
  29. Build with newlib library. The newlib library is expected to be
  30. part of the SDK in this case.
  31. config ARCMWDT_LIBC
  32. bool "ARC MWDT C library"
  33. depends on !NATIVE_APPLICATION
  34. depends on "$(ZEPHYR_TOOLCHAIN_VARIANT)" = "arcmwdt"
  35. help
  36. C library provided by ARC MWDT toolchain.
  37. config EXTERNAL_LIBC
  38. bool "External C library"
  39. help
  40. Build with external/user provided C library.
  41. endchoice # LIBC_IMPLEMENTATION
  42. config HAS_NEWLIB_LIBC_NANO
  43. bool
  44. if NEWLIB_LIBC
  45. config NEWLIB_LIBC_NANO
  46. bool "Build with newlib-nano C library"
  47. depends on HAS_NEWLIB_LIBC_NANO
  48. default y
  49. help
  50. Build with newlib-nano library, for small embedded apps.
  51. The newlib-nano library for ARM embedded processors is a part of the
  52. GNU Tools for ARM Embedded Processors.
  53. config NEWLIB_LIBC_MAX_MAPPED_REGION_SIZE
  54. int "Maximum memory mapped for newlib heap"
  55. depends on MMU
  56. default 1048576
  57. help
  58. On MMU-based systems, indicates the maximum amount of memory which
  59. will be used for the newlib malloc() heap. The actual amount of
  60. memory used will be the minimum of this value and the amount of
  61. free physical memory at kernel boot.
  62. config NEWLIB_LIBC_MIN_REQUIRED_HEAP_SIZE
  63. int "Newlib minimum required heap size"
  64. default 2048 if NEWLIB_LIBC_NANO
  65. default 8192 if !NEWLIB_LIBC_NANO
  66. help
  67. Specifies the amount of memory space that must be available for the
  68. newlib heap. An assertion failure message will be displayed during
  69. initialization if the memory space available for the newlib heap is
  70. smaller than this value.
  71. config NEWLIB_LIBC_ALIGNED_HEAP_SIZE
  72. int "Newlib aligned heap size"
  73. depends on MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT
  74. depends on USERSPACE
  75. default 0
  76. help
  77. If user mode is enabled, and MPU hardware has requirements that
  78. regions be sized to a power of two and aligned to their size,
  79. and user mode threads need to access this heap, then this is necessary
  80. to properly define an MPU region for the heap.
  81. If this is left at 0, then remaining system RAM will be used for this
  82. area and it may not be possible to program it as an MPU region.
  83. config NEWLIB_LIBC_FLOAT_PRINTF
  84. bool "Build with newlib float printf"
  85. help
  86. Build with floating point printf enabled. This will increase the size of
  87. the image.
  88. config NEWLIB_LIBC_FLOAT_SCANF
  89. bool "Build with newlib float scanf"
  90. help
  91. Build with floating point scanf enabled. This will increase the size of
  92. the image.
  93. endif # NEWLIB_LIBC
  94. if MINIMAL_LIBC
  95. config MINIMAL_LIBC_MALLOC
  96. bool "Enable minimal libc malloc implementation"
  97. default y
  98. help
  99. Enable the minimal libc's implementation of malloc, free, and realloc.
  100. Disable if you wish to provide your own implementations of these functions.
  101. config MINIMAL_LIBC_MALLOC_ARENA_SIZE
  102. int "Size of the minimal libc malloc arena"
  103. default 0
  104. depends on MINIMAL_LIBC_MALLOC
  105. help
  106. Indicate the size in bytes of the memory arena used for
  107. minimal libc's malloc() implementation.
  108. config MINIMAL_LIBC_CALLOC
  109. bool "Enable minimal libc trivial calloc implementation"
  110. default y
  111. help
  112. Enable the minimal libc's trivial implementation of calloc, which
  113. forwards to malloc and memset.
  114. config MINIMAL_LIBC_REALLOCARRAY
  115. bool "Enable minimal libc trivial reallocarray implementation"
  116. default y
  117. help
  118. Enable the minimal libc's trivial implementation of reallocarray, which
  119. forwards to realloc.
  120. config MINIMAL_LIBC_LL_PRINTF
  121. bool "Build with minimal libc long long printf" if !64BIT
  122. default y if 64BIT
  123. help
  124. Build with long long printf enabled. This will increase the size of
  125. the image.
  126. config MINIMAL_LIBC_OPTIMIZE_STRING_FOR_SIZE
  127. bool "Use size optimized string functions"
  128. default y if SIZE_OPTIMIZATIONS
  129. help
  130. Enable smaller but potentially slower implementations of memcpy and
  131. memset. On the Cortex-M0+ this reduces the total code size by 120 bytes.
  132. config MINIMAL_LIBC_RAND
  133. bool "Enables rand and srand functions"
  134. select NEED_LIBC_MEM_PARTITION
  135. help
  136. Enable rand() and srand() for the minimal libc. The
  137. functions implicitly access global/static data. Such data
  138. must be put into a memory partition if CONFIG_USERSPACE=y,
  139. and disabling this option may save an entry for application
  140. defining many custom partitions.
  141. Say 'Y' here if you need rand() and srand(). This might require
  142. an additional memory partition.
  143. endif # MINIMAL_LIBC
  144. config STDOUT_CONSOLE
  145. bool "Send stdout to console"
  146. depends on CONSOLE_HAS_DRIVER
  147. depends on !NATIVE_APPLICATION
  148. default y
  149. help
  150. This option directs standard output (e.g. printf) to the console
  151. device, rather than suppressing it entirely. See also EARLY_CONSOLE
  152. option.
  153. config NEED_LIBC_MEM_PARTITION
  154. bool
  155. help
  156. Hidden option to signal that a memory partition is needed for
  157. the C libraray even though it would not have been enabled
  158. otherwise.
  159. config LIBC_STRING_BROM
  160. bool "use rom export string function"
  161. help
  162. if yes, use rom export string function. no, use default string.c
  163. endmenu