Blame SOURCES/add-llvm-cmake-package.patch

590587
commit b18bde7a9bd6ed80f5721c47c805f0158b4fe9f8
590587
Author: Timm Bäder <tbaeder@redhat.com>
590587
Date:   Wed Mar 9 07:17:21 2022 +0100
590587
590587
    [compiler-rt] Add LLVM cmake package in standalone builds
590587
    
590587
    So the other files from the toplevel cmake/Modules directory have a
590587
    chance of being found.
590587
590587
diff --git a/compiler-rt/CMakeLists.txt b/compiler-rt/CMakeLists.txt
590587
index 3a41aa43e406..6516e10fa3c5 100644
590587
--- a/compiler-rt/CMakeLists.txt
590587
+++ b/compiler-rt/CMakeLists.txt
590587
@@ -28,6 +28,12 @@ else()
590587
   set(CMAKE_CFG_RESOLVED_INTDIR "")
590587
 endif()
590587
 
590587
+if(COMPILER_RT_STANDALONE_BUILD)
590587
+  # Needed to find the other modules from the toplevel cmake/Modules dir
590587
+  find_package(LLVM REQUIRED HINTS "${LLVM_CMAKE_DIR}")
590587
+  list(APPEND CMAKE_MODULE_PATH "${LLVM_DIR}")
590587
+endif()
590587
+
590587
 include(SetPlatformToolchainTools)
590587
 include(base-config-ix)
590587
 include(CompilerRTUtils)
590587
diff --git a/compiler-rt/test/CMakeLists.txt b/compiler-rt/test/CMakeLists.txt
590587
index 5c2b634e1180..098fb0481517 100644
590587
--- a/compiler-rt/test/CMakeLists.txt
590587
+++ b/compiler-rt/test/CMakeLists.txt
590587
@@ -1,6 +1,3 @@
590587
-# Needed for lit support in standalone builds.
590587
-include(AddLLVM)
590587
-
590587
 option(COMPILER_RT_TEST_STANDALONE_BUILD_LIBS
590587
   "When set to ON and testing in a standalone build, test the runtime \
590587
   libraries built by this standalone build rather than the runtime libraries \