https://github.com/luporl created https://github.com/llvm/llvm-project/pull/160581
Fixes #135021 Suggested-by: Kawashima Takahiro <[email protected]> >From 459c213b8d6c51f10a9f7cb37b5b0707205a78b0 Mon Sep 17 00:00:00 2001 From: Leandro Lupori <[email protected]> Date: Wed, 24 Sep 2025 18:23:25 +0000 Subject: [PATCH] Build and ship OpenMP with LLVM releases Fixes #135021 Suggested-by: Kawashima Takahiro <[email protected]> --- clang/cmake/caches/Release.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/cmake/caches/Release.cmake b/clang/cmake/caches/Release.cmake index a523cc561b3f9..af8e341ab5f07 100644 --- a/clang/cmake/caches/Release.cmake +++ b/clang/cmake/caches/Release.cmake @@ -36,7 +36,7 @@ if (${CMAKE_HOST_SYSTEM_NAME} MATCHES "Linux") list(APPEND DEFAULT_PROJECTS "bolt") endif() -set (DEFAULT_RUNTIMES "compiler-rt;libcxx") +set (DEFAULT_RUNTIMES "compiler-rt;libcxx;openmp;flang-rt") if (NOT WIN32) list(APPEND DEFAULT_RUNTIMES "libcxxabi" "libunwind") endif() _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
