10 lines
379 B
CMake
10 lines
379 B
CMake
|
# The coverage linker flag is specific for clang.
|
||
|
if (NOT CONFIG_COVERAGE_GCOV)
|
||
|
set_property(TARGET linker PROPERTY coverage --coverage)
|
||
|
endif()
|
||
|
|
||
|
# ld/clang linker flags for sanitizing.
|
||
|
check_set_linker_property(TARGET linker APPEND PROPERTY sanitize_address -fsanitize=address)
|
||
|
|
||
|
check_set_linker_property(TARGET linker APPEND PROPERTY sanitize_undefined -fsanitize=undefined)
|