From 711eed3b547627e8a99fb83c9bf90f7ccdd123b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20Anderss=C3=A9n?= Date: Sat, 14 Mar 2026 01:20:05 +0200 Subject: [PATCH] fix: add MSVCRT.DLL to the list of recognized Windows system DLLs --- tools/collect_mingw_runtime_dlls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/collect_mingw_runtime_dlls.py b/tools/collect_mingw_runtime_dlls.py index 8129ffd..908d0ee 100644 --- a/tools/collect_mingw_runtime_dlls.py +++ b/tools/collect_mingw_runtime_dlls.py @@ -31,6 +31,7 @@ def is_windows_system_dll(dll_name: str) -> bool: "COMDLG32.DLL", "GDI32.DLL", "KERNEL32.DLL", + "MSVCRT.DLL", "OLE32.DLL", "SHELL32.DLL", "USER32.DLL",