Skip to content

Commit

Permalink
Always use Clang Toolchain
Browse files Browse the repository at this point in the history
Fixes #56
  • Loading branch information
AlexanderViand-Intel committed Jun 24, 2024
1 parent 0a3668f commit aba98b9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ endif()
# MLIR/LLVM currently (release 15-rc1) uses DEPFILE in their cmake, which has changed in new versions
cmake_policy(SET CMP0116 OLD)

# ########################
# Select Clang Toolchain #
# ########################
SET(CMAKE_C_COMPILER "clang")
SET(CMAKE_CXX_COMPILER "clang++")

# ########################
# Project Configuration #
# ########################
Expand Down Expand Up @@ -217,4 +223,4 @@ if(HECO_STANDALONE_BUILD)
message("Enabling HECO Evaluation")
enable_testing()
add_subdirectory(evaluation)
endif()
endif()

0 comments on commit aba98b9

Please sign in to comment.