[llvm] On Windows, remove the UCRT libraries from the release script (PR #128378)
Alexandre Ganea via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 22 15:24:04 PST 2025
https://github.com/aganea created https://github.com/llvm/llvm-project/pull/128378
Since the 19.0 release, they aren't required anymore, 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
>From 1305a342ef1e703b15ce09295a1c7232cd8e6a71 Mon Sep 17 00:00:00 2001
From: Alexandre Ganea <alex_toresh at yahoo.fr>
Date: Sat, 22 Feb 2025 18:19:50 -0500
Subject: [PATCH] On Windows, remove the UCRT libraries from the release script
Since the 19.0 they aren't required anymore, since we link the CRT statically into all distributed binaries.
---
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-commits
mailing list