mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-15 11:21:55 +00:00
Print the name of the discovered toolchain as well as the variable used to initialize it. This is nice to know when doing remote support, since users will sometimes misconfigure their toolchain and not know what that means. Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
10 lines
228 B
CMake
10 lines
228 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set(COMPILER host-gcc)
|
|
set(LINKER ld)
|
|
set(BINTOOLS host-gnu)
|
|
|
|
set(TOOLCHAIN_HAS_NEWLIB OFF CACHE BOOL "True if toolchain supports newlib")
|
|
|
|
message(STATUS "Found toolchain: host (gcc/ld)")
|