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