You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
message(SEND_ERROR"LLVM versions greater than 20 are not yet tested/supported, use -DACPP_EXPERIMENTAL_LLVM=ON if you still wish to try your luck.")
408
+
endif()
409
+
if(${LLVM_VERSION_MAJOR}GREATER17)
410
+
# Starting from LLVM 18, releases will have LLVM_VERSION_MINOR>0
411
+
if(${LLVM_VERSION_MINOR}EQUAL0)
412
+
message(SEND_ERROR"This LLVM seems to be a development version; only LLVM releases are tested and supported. Use -DACPP_EXPERIMENTAL_LLVM=ON if you still wish to try your luck.")
413
+
endif()
414
+
endif()
415
+
endif()
416
+
403
417
message(STATUS"Using clang include directory: ${CLANG_INCLUDE_PATH}")
404
418
405
419
# Check if building on Windows and LLVM_LIBS is set, if not, use LLVM_AVAILABLE_LIBS
0 commit comments