mirror of
git://code.qt.io/qt/qt5.git
synced 2026-05-09 12:37:50 +08:00
Tier 1 image includes all configurations from pre-provisioning folder. E.g. these are pre-provisioned: Visual Studio 2015 version 14.0.25420.1 Update 3 Visual Studio 2019 + build tools version 16.11.7 Visual Studio 2022 + build tools version 17.0.1 Task-number: QTQAINFRA-4651 Change-Id: Ib0160acaf4a560cf399dc4427c1495724900d0bf Reviewed-by: Oliver Wolff <oliver.wolff@qt.io>
12 lines
352 B
PowerShell
12 lines
352 B
PowerShell
. "$PSScriptRoot\..\common\windows\install-mingw.ps1"
|
|
|
|
# This script will install 64-bit MinGW 11.2.0
|
|
# Note! MinGW version is 9.0.0 but the GCC version is 11.2 which is used with the naming of MinGW
|
|
|
|
$release = "MinGW-w64-x86_64-11.2.0-release-posix-seh-rt_v9-rev1"
|
|
|
|
$sha1 = "76bbfd135633d3d414e06cd7bf70cae94d2311db"
|
|
|
|
InstallMinGW $release $sha1
|
|
|