diff options
author | Ivan Komissarov <abbapoh@gmail.com> | 2021-05-06 11:15:16 +0200 |
---|---|---|
committer | Ivan Komissarov <ABBAPOH@gmail.com> | 2021-05-06 11:34:33 +0000 |
commit | 9812f94606afa246f0d2fe81c6fba5216c383361 (patch) | |
tree | 9d2b7930aa7a725282501523184160705f31313a /scripts | |
parent | 8b4ea1276558e65109982339d3ae65a143e2360d (diff) | |
download | qbs-9812f94606afa246f0d2fe81c6fba5216c383361.tar.gz |
Use 64bit QtC version instead of 32-bit one
Change-Id: I34347e51eecb076872181ef71094a1189f436407
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install-qt.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/install-qt.sh b/scripts/install-qt.sh index fa7600a32..c309c23c3 100755 --- a/scripts/install-qt.sh +++ b/scripts/install-qt.sh @@ -251,6 +251,11 @@ function compute_url(){ if [[ "${COMPONENT}" =~ "qtcreator" ]]; then + if [[ "${HOST_OS}" == "windows_x86" ]]; then + # newer QtC versions do not supported x86 version anymore + HOST_OS="windows_x64" + fi + SHORT_VERSION=${VERSION%??} BASE_URL="${MIRROR}/official_releases/qtcreator" REMOTE_PATH="${SHORT_VERSION}/${VERSION}/installer_source/${HOST_OS}/qtcreator.7z" |