[llvm-branch-commits] [llvm] release/20.x: On Windows, remove the UCRT libraries from the release script (#128378) (PR #128720)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Feb 25 06:37:51 PST 2025
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/128720
Backport 4ba3ebe
Requested by: @aganea
>From 89d34250f1a270577ee44f9a2d8715e27fd7835f Mon Sep 17 00:00:00 2001
From: Alexandre Ganea <alex_toresh at yahoo.fr>
Date: Mon, 24 Feb 2025 08:53:44 -0500
Subject: [PATCH] On Windows, remove the UCRT libraries from the release script
(#128378)
Since the 19.0 release, the UCRT dlls shouldn't be included anymore in the Windows distribution, as we link the CRT
statically into all distributed binaries.
https://discourse.llvm.org/t/llvm-x86-64-pc-windows-msvc-binaries-no-longer-need-msvc-runtime-dlls-since-19-x/84465
(cherry picked from commit 4ba3ebef642eaa4d46567a972c5ee1badb2ebadf)
---
llvm/utils/release/build_llvm_release.bat | 1 -
1 file changed, 1 deletion(-)
diff --git a/llvm/utils/release/build_llvm_release.bat b/llvm/utils/release/build_llvm_release.bat
index 1c30673cf88bd..588d7201fcb92 100755
--- a/llvm/utils/release/build_llvm_release.bat
+++ b/llvm/utils/release/build_llvm_release.bat
@@ -152,7 +152,6 @@ set common_cmake_flags=^
-DLLVM_INSTALL_TOOLCHAIN_ONLY=ON ^
-DLLVM_TARGETS_TO_BUILD="AArch64;ARM;X86;BPF;WebAssembly;RISCV;NVPTX" ^
-DLLVM_BUILD_LLVM_C_DYLIB=ON ^
- -DCMAKE_INSTALL_UCRT_LIBRARIES=ON ^
-DPython3_FIND_REGISTRY=NEVER ^
-DPACKAGE_VERSION=%package_version% ^
-DLLDB_RELOCATABLE_PYTHON=1 ^
More information about the llvm-branch-commits
mailing list