1# SPDX-License-Identifier: Apache-2.0
2
3# See root CMakeLists.txt for description and expectations of these macros
4
5macro(toolchain_ld_cpp)
6
7  if(NOT CONFIG_EXTERNAL_MODULE_LIBCPP)
8    zephyr_link_libraries(
9      -lstdc++
10    )
11  endif()
12
13endmacro()
14