2019-04-06 21:08:09 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2019-03-08 19:08:14 +08:00
|
|
|
if(DEFINED TOOLCHAIN_HOME)
|
2020-05-19 16:09:28 +08:00
|
|
|
set(find_program_clang_args PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
|
2019-03-08 19:08:14 +08:00
|
|
|
endif()
|
|
|
|
|
2023-02-08 13:17:37 +08:00
|
|
|
find_program(CMAKE_C_COMPILER clang ${find_program_clang_args} REQUIRED)
|
2021-08-28 06:57:15 +08:00
|
|
|
find_program(CMAKE_LLVM_COV llvm-cov ${find_program_clang_args})
|
|
|
|
set(CMAKE_GCOV "${CMAKE_LLVM_COV} gcov")
|
2019-03-08 19:08:14 +08:00
|
|
|
|