We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21a8536 commit 0b01a1dCopy full SHA for 0b01a1d
clang/cmake/caches/Release.cmake
@@ -30,7 +30,11 @@ endfunction()
30
#
31
# cmake -D LLVM_RELEASE_ENABLE_PGO=ON -C Release.cmake
32
33
-set (DEFAULT_PROJECTS "clang;lld;lldb;clang-tools-extra;polly;mlir;flang")
+if(${CMAKE_HOST_SYSTEM_NAME} MATCHES "Windows")
34
+ set (DEFAULT_PROJECTS "clang;lld;lldb;clang-tools-extra")
35
+else()
36
+ set (DEFAULT_PROJECTS "clang;lld;lldb;clang-tools-extra;polly;mlir;flang")
37
+endif()
38
39
# bolt only supports ELF, so only enable it for Linux.
40
if (${CMAKE_HOST_SYSTEM_NAME} MATCHES "Linux")
0 commit comments