[Openmp-commits] [llvm] [openmp] [OpenMP] Fix runtimes default build (PR #149871)
Joseph Huber via Openmp-commits
openmp-commits at lists.llvm.org
Tue Jul 22 08:34:38 PDT 2025
================
@@ -92,6 +92,15 @@ include(LLVMCheckCompilerLinkerFlag)
include(CheckCCompilerFlag)
include(CheckCXXCompilerFlag)
+
+# Determine whether we are in the runtimes/runtimes-bins directory of a
+# bootstrap build.
+set(LLVM_TREE_AVAILABLE OFF)
+if (LLVM_LIBRARY_OUTPUT_INTDIR AND LLVM_RUNTIME_OUTPUT_INTDIR AND PACKAGE_VERSION)
+ set(LLVM_TREE_AVAILABLE ON)
+endif()
+
+
----------------
jhuber6 wrote:
```suggestion
```
https://github.com/llvm/llvm-project/pull/149871
More information about the Openmp-commits
mailing list