mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-13 15:55:22 +00:00
No functional change expected. This is motivated by the wish to abstract Zephyr's usage of toolchains, permitting non-intrusive porting to other (commercial) toolchains. Signed-off-by: Mark Ruvald Pedersen <mped@oticon.com>
12 lines
190 B
CMake
12 lines
190 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# See root CMakeLists.txt for description and expectations of these macros
|
|
|
|
macro(toolchain_ld_cpp)
|
|
|
|
zephyr_ld_options(
|
|
-lstdc++
|
|
)
|
|
|
|
endmacro()
|