From 322aa890065e97c27a718bb96274e3cb6d6494a3 Mon Sep 17 00:00:00 2001 From: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com> Date: Mon, 17 May 2021 00:54:28 +0300 Subject: [PATCH] [windows] Add msys libxml2 package installation (#3386) --- images/win/scripts/Installers/Install-Msys2.ps1 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/images/win/scripts/Installers/Install-Msys2.ps1 b/images/win/scripts/Installers/Install-Msys2.ps1 index f0da38503..bd0590ef5 100644 --- a/images/win/scripts/Installers/Install-Msys2.ps1 +++ b/images/win/scripts/Installers/Install-Msys2.ps1 @@ -60,8 +60,9 @@ Write-Host "`n$dash Remove p7zip/7z package due to conflicts" pacman.exe -R --noconfirm --noprogressbar p7zip # mingw package list -$tools64 = "___clang ___clang-tools-extra ___cmake ___llvm ___toolchain ___ragel" -$tools32 = "___clang ___cmake ___llvm ___toolchain ___ragel" +# libxml2 can be removed from the list after the issue is fixed https://github.com/msys2/MINGW-packages/issues/8658 +$tools64 = "___clang ___clang-tools-extra ___cmake ___libxml2 ___llvm ___toolchain ___ragel" +$tools32 = "___clang ___cmake ___libxml2 ___llvm ___toolchain ___ragel" # install mingw64 packages Write-Host "`n$dash Install mingw64 packages"