zephyr/cmake/compiler/clang/target_coverage.cmake

19 lines
219 B
CMake

# SPDX-License-Identifier: Apache-2.0
macro(toolchain_cc_coverage)
zephyr_compile_options(
--coverage
-fno-inline
)
if (NOT CONFIG_COVERAGE_GCOV)
zephyr_link_libraries(
--coverage
)
endif()
endmacro()