From c346526e1b79f6d39753f3f2077aaadc14546337 Mon Sep 17 00:00:00 2001 From: Automatic Release Builder Date: Tue, 8 Feb 2022 10:30:27 +0000 Subject: [PATCH] Windows installer: don't copy compiler runtime --- build_release_windows.bat | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build_release_windows.bat b/build_release_windows.bat index 3de4601..0fb30f6 100755 --- a/build_release_windows.bat +++ b/build_release_windows.bat @@ -48,7 +48,8 @@ cd .. REM Qt5 deployment SET QMLDIR=%WORKSPACE%/flightgear/src/GUI/qml -%QT5SDK64%\bin\windeployqt --release --list target --qmldir %QMLDIR% %WORKSPACE%/install/msvc140-64/bin/fgfs.exe +REM Don't copy the compiler runtime libs, since it includes potentially older UCrtbase. +%QT5SDK64%\bin\windeployqt --release --no-compiler-runtime --qmldir %QMLDIR% %WORKSPACE%/install/msvc140-64/bin/fgfs.exe REM build setup ECHO Packaging root is %WORKSPACE%