File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -30,12 +30,18 @@ endfunction()
3030#
3131# cmake -D LLVM_RELEASE_ENABLE_PGO=ON -C Release.cmake
3232
33- set (DEFAULT_PROJECTS "clang;lld;lldb;clang-tools-extra;polly;mlir;flang " )
33+ set (DEFAULT_PROJECTS "clang;lld;lldb;clang-tools-extra;polly;mlir" )
3434# bolt only supports ELF, so only enable it for Linux.
3535if (${CMAKE_HOST_SYSTEM_NAME} MATCHES "Linux" )
3636 list (APPEND DEFAULT_PROJECTS "bolt" )
3737endif ()
3838
39+ # Don't build flang on Darwin due to:
40+ # https://github.com/llvm/llvm-project/issues/160546
41+ if (NOT ${CMAKE_HOST_SYSTEM_NAME} MATCHES "Darwin" )
42+ list (APPEND DEFAULT_PROJECTS "flang" )
43+ endif ()
44+
3945set (DEFAULT_RUNTIMES "compiler-rt;libcxx" )
4046if (NOT WIN32 )
4147 list (APPEND DEFAULT_RUNTIMES "libcxxabi" "libunwind" )
You can’t perform that action at this time.
0 commit comments