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.
openmp
1 parent 6d13cc9 commit bb89988Copy full SHA for bb89988
llvm/CMakeLists.txt
@@ -117,6 +117,12 @@ endif()
117
# This allows an easy way of setting up a build directory for llvm and another
118
# one for llvm+clang+... using the same sources.
119
set(LLVM_ALL_PROJECTS "bolt;clang;clang-tools-extra;compiler-rt;cross-project-tests;libc;libclc;lld;lldb;mlir;openmp;polly;pstl")
120
+if (${CMAKE_SYSTEM_NAME} MATCHES "AIX")
121
+ # Disallow 'openmp' as a LLVM PROJECT on AIX as the supported way is to use
122
+ # LLVM_ENABLE_RUNTIMES.
123
+ list(REMOVE_ITEM LLVM_ALL_PROJECTS openmp)
124
+endif()
125
+
126
# The flang project is not yet part of "all" projects (see C++ requirements)
127
set(LLVM_EXTRA_PROJECTS "flang")
128
# List of all known projects in the mono repo
0 commit comments