File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,14 @@ set(LLVM_ENABLE_PROJECTS "" CACHE STRING
130
130
if ( LLVM_ENABLE_PROJECTS STREQUAL "all" )
131
131
set ( LLVM_ENABLE_PROJECTS ${LLVM_ALL_PROJECTS} )
132
132
endif ()
133
+
134
+ # The pstl project was removed. Ignore it to pacify certain buildbots.
135
+ list (FIND LLVM_ENABLE_PROJECTS "pstl" FOUND_INDEX )
136
+ if (NOT "${FOUND_INDEX} " STREQUAL "-1" )
137
+ message (WARNING "The pstl project has been removed and will not be built" )
138
+ list (REMOVE_ITEM LLVM_ENABLE_PROJECTS "pstl" )
139
+ endif ()
140
+
133
141
foreach (proj ${LLVM_ENABLE_PROJECTS} )
134
142
if (NOT proj STREQUAL "llvm" AND NOT "${proj} " IN_LIST LLVM_KNOWN_PROJECTS )
135
143
MESSAGE (FATAL_ERROR "${proj} isn't a known project: ${LLVM_KNOWN_PROJECTS} . Did you mean to enable it as a runtime in LLVM_ENABLE_RUNTIMES?" )
You can’t perform that action at this time.
0 commit comments