Kconfig 536 B

1234567891011121314151617181920212223
  1. # Copyright (c) 2021 Nordic Semiconductor ASA
  2. # SPDX-License-Identifier: Apache-2.0
  3. config LD_LINKER_SCRIPT_SUPPORTED
  4. bool
  5. default n
  6. choice LINKER_SCRIPT
  7. default CMAKE_LINKER_GENERATOR
  8. endchoice
  9. choice LIBC_IMPLEMENTATION
  10. prompt "C Library Implementation"
  11. default ARMCLANG_STD_LIBC
  12. config ARMCLANG_STD_LIBC
  13. bool "ARM Compiler C library"
  14. help
  15. Use the full Arm Compiler runtime libraries.
  16. A reduced Zephyr minimal libc will be used for library functionality
  17. not provided by ARM Compiler standard libraries.
  18. endchoice