zephyr/cmake/linker/linker_libraries_native.cmake
Torsten Rasmussen cc488787ea cmake: source dedicated linker library properties for native builds
Native builds uses system libraries per default.
Instead of handling this in each linker_libraries.cmake files, then the
check for native build is moved one level up and for native build a
dedicated linker_libraries_native.cmake is sourced.

This simplifies the linker_libraries.cmake files as they no longer need
to check for native builds.

Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
2024-11-16 15:28:20 -05:00

21 lines
876 B
CMake

# Copyright (c) 2024 Nordic Semiconductor
#
# SPDX-License-Identifier: Apache-2.0
# When doing native builds, then we default to host libraries.
# No reason for loading linker libraries properties in this case, however we do
# define link order because that allows the build system to hook in alternative
# C library implementations, such as minimal libc or picolibc.
# Empty on purpose as we default to host libraries selected by the linker.
set_linker_property(PROPERTY c_library "")
set_linker_property(PROPERTY rt_library "")
set_linker_property(PROPERTY c++_library "")
# Although library properties are empty per default, then we still define link
# order as this allows to update libraries in use elsewhere.
if(CONFIG_CPP)
set_property(TARGET linker PROPERTY link_order_library "c++")
endif()
set_property(TARGET linker APPEND PROPERTY link_order_library "c;rt")