aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/install-qt.sh
diff options
context:
space:
mode:
authorIvan Komissarov <abbapoh@gmail.com>2021-05-06 11:15:16 +0200
committerIvan Komissarov <ABBAPOH@gmail.com>2021-05-06 11:34:33 +0000
commit9812f94606afa246f0d2fe81c6fba5216c383361 (patch)
tree9d2b7930aa7a725282501523184160705f31313a /scripts/install-qt.sh
parent8b4ea1276558e65109982339d3ae65a143e2360d (diff)
Use 64bit QtC version instead of 32-bit one
Change-Id: I34347e51eecb076872181ef71094a1189f436407 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'scripts/install-qt.sh')
-rwxr-xr-xscripts/install-qt.sh5
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"