Skip to content

Commit

Permalink
throw error not warning if building with non-clang compiler (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
slabasan authored Oct 10, 2024
1 parent 9e45154 commit d9fc8d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/c/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
set(PERFFLOWASPECT_CLANG_11_NEWER FALSE CACHE BOOL "using >=clang11")
endif()
else()
message(WARNING "Unsupported CXX compiler: please use Clang >= 9.0")
message(FATAL_ERROR "Unsupported CXX compiler: please use Clang >= 9.0")
endif()

include(cmake/CMakeBasics.cmake)
Expand Down

0 comments on commit d9fc8d8

Please sign in to comment.