blob: 7cbfa17f7d1c8fd08ce5c3a1a9632f6fe07aa29e [file] [log] [blame]
# 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()