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
if ((NOTDEFINEDCMAKE_MAKE_PROGRAMORNOTEXISTS"${CMAKE_MAKE_PROGRAM}"ORNOTCMAKE_MAKE_PROGRAM) AND (CMAKE_GENERATORSTREQUAL"Ninja"ORCMAKE_GENERATORSTREQUAL"Ninja Multi-Config"))
message(FATAL_ERROR "Clang compiler not found at ${CMAKE_C_COMPILER}. Please reinstall LLVM for WoA (Windows on Arm): ${LLVM_INSTALLATION_URL}")
58
+
else()
59
+
message(FATAL_ERROR "Clang compiler not found at ${CMAKE_C_COMPILER}. Please reinstall LLVM: ${LLVM_INSTALLATION_URL}")
60
+
endif()
61
+
endif()
62
+
if (NOTEXISTS"${CMAKE_CXX_COMPILER}")
63
+
if (CURRENT_ARCH STREQUAL"arm64")
64
+
message(FATAL_ERROR "Clang++ compiler not found at ${CMAKE_CXX_COMPILER}. Please reinstall LLVM for WoA (Windows on Arm): ${LLVM_INSTALLATION_URL}")
65
+
else()
66
+
message(FATAL_ERROR "Clang++ compiler not found at ${CMAKE_CXX_COMPILER}. Please reinstall LLVM: ${LLVM_INSTALLATION_URL}")
67
+
endif()
68
+
endif()
69
+
if (NOTEXISTS"${CMAKE_RC_COMPILER}")
70
+
if (CURRENT_ARCH STREQUAL"arm64")
71
+
message(FATAL_ERROR "LLVM Resource Compiler not found at ${CMAKE_RC_COMPILER}. Please reinstall LLVM for WoA (Windows on Arm): ${LLVM_INSTALLATION_URL}")
72
+
else()
73
+
message(FATAL_ERROR "LLVM Resource Compiler not found at ${CMAKE_RC_COMPILER}. Please reinstall LLVM: ${LLVM_INSTALLATION_URL}")
0 commit comments