mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 07:21:56 +00:00
This adds experimental support for the IAR toolchain. Signed-off-by: Robin Kastberg <robin.kastberg@iar.com>
15 lines
478 B
CMake
15 lines
478 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_syscall_header(
|
|
${ZEPHYR_BASE}/include/zephyr/sys/libc-hooks.h
|
|
)
|
|
|
|
add_subdirectory_ifdef(CONFIG_ARCMWDT_LIBC arcmwdt)
|
|
add_subdirectory_ifdef(CONFIG_ARMCLANG_STD_LIBC armstdc)
|
|
add_subdirectory_ifdef(CONFIG_IAR_LIBC iar)
|
|
add_subdirectory_ifdef(CONFIG_MINIMAL_LIBC minimal)
|
|
add_subdirectory_ifdef(CONFIG_NEWLIB_LIBC newlib)
|
|
add_subdirectory_ifdef(CONFIG_PICOLIBC picolibc)
|
|
|
|
add_subdirectory(common)
|