[llvm] 2c72af8 - [CMake] Error when specifying pstl in LLVM_ENABLE_PROJECTS

Aiden Grossman via llvm-commits llvm-commits at lists.llvm.org
Sun Dec 28 14:51:00 PST 2025


Author: Aiden Grossman
Date: 2025-12-28T22:48:56Z
New Revision: 2c72af88213c0f9c507d9c8b34a39de8173a6fcc

URL: https://github.com/llvm/llvm-project/commit/2c72af88213c0f9c507d9c8b34a39de8173a6fcc
DIFF: https://github.com/llvm/llvm-project/commit/2c72af88213c0f9c507d9c8b34a39de8173a6fcc.diff

LOG: [CMake] Error when specifying pstl in LLVM_ENABLE_PROJECTS

f59d270867ccd4f8f34b32e7f144519df332f4d2 originally added this logic to
pacify buildbots, particularly the premerge-monolithic-linux bot. This
was fixed soon after the fact in
https://github.com/llvm/llvm-zorg/pull/485, and the premerge bots are
only connected to staging right now using the upstream scripts anyways.

Added: 
    

Modified: 
    llvm/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/llvm/CMakeLists.txt b/llvm/CMakeLists.txt
index 6d94cbbcd2559..f0e4f5d7d6f60 100644
--- a/llvm/CMakeLists.txt
+++ b/llvm/CMakeLists.txt
@@ -131,13 +131,6 @@ if( LLVM_ENABLE_PROJECTS STREQUAL "all" )
   set( LLVM_ENABLE_PROJECTS ${LLVM_ALL_PROJECTS})
 endif()
 
-# The pstl project was removed. Ignore it to pacify certain buildbots.
-list(FIND LLVM_ENABLE_PROJECTS "pstl" FOUND_INDEX)
-if(NOT "${FOUND_INDEX}" STREQUAL "-1")
-  message(WARNING "The pstl project has been removed and will not be built")
-  list(REMOVE_ITEM LLVM_ENABLE_PROJECTS "pstl")
-endif()
-
 foreach(proj ${LLVM_ENABLE_PROJECTS})
   if (NOT proj STREQUAL "llvm" AND NOT "${proj}" IN_LIST LLVM_KNOWN_PROJECTS)
      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?")


        


More information about the llvm-commits mailing list