-
Notifications
You must be signed in to change notification settings - Fork 225
Closed
Description
I am getting the above error when trying to add coverage flags to my project. It seems to be related to checking the compilers for each of the available languages.
Relevant CMake code:
# Debug info to help with this issue
get_property(LANGUAGES GLOBAL PROPERTY ENABLED_LANGUAGES)
message("ALL LANGUAGES: ${LANGUAGES}")
foreach(LANG ${LANGUAGES})
message("${LANG} compiler is \"${CMAKE_${LANG}_COMPILER_ID}\"")
endforeach()
# Error hit by this line
include(CodeCoverage)Relevant output of CMake:
ALL LANGUAGES: ASM;C;CXX;NONE
ASM compiler is ""
C compiler is "Clang"
CXX compiler is "Clang"
NONE compiler is ""
CMake Error at lib/cmake-modules/CodeCoverage.cmake:159 (message):
Compiler is not GNU or Flang! Aborting...
Call Stack (most recent call first):
CMakeLists.txt:132 (include)
Please let me know if there's any more information I can provide
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels