1# Copyright (c) 2024 Nordic Semiconductor 2# 3# SPDX-License-Identifier: Apache-2.0 4 5# Per default armclang (Arm Compiler 6) doesn't need explicit C library linking 6# so we only need to set link order linking in case a custom C library is linked 7# in, such as picolibc. 8set_property(TARGET linker APPEND PROPERTY link_order_library "c;rt") 9