Skip to content

Commit

Permalink
downgrade to llvm-17;
Browse files Browse the repository at this point in the history
  • Loading branch information
NateSeymour committed Oct 31, 2024
1 parent eaf00ed commit bd57f05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project(unlogic)
set(CMAKE_CXX_STANDARD 23)

# External Libs
find_package(LLVM 18.1.8 CONFIG REQUIRED)
find_package(LLVM 17 CONFIG REQUIRED)
separate_arguments(LLVM_DEFINITIONS_LIST NATIVE_COMMAND ${LLVM_DEFINITIONS})
add_definitions(${LLVM_DEFINITIONS_LIST})

Expand Down Expand Up @@ -38,7 +38,7 @@ FetchContent_MakeAvailable(GTEST)
if(APPLE)
set(llvm_libs ${LLVM_AVAILABLE_LIBS})
else()
set(llvm_libs -lLLVM-18)
set(llvm_libs -lLLVM-17)
endif()

# Unlogic
Expand Down

0 comments on commit bd57f05

Please sign in to comment.