mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-01 19:36:04 +08:00
Custom patched packages for windows.
Also Add Windows on arm support.
Pick-to: 6.10 6.8
Fixes: COIN-740
Change-Id: I27f7d36b3501be2a2011b9b8dfa0ec846cd57bf5
Reviewed-by: Jukka Jokiniva <jukka.jokiniva@qt.io>
(cherry picked from commit 73c4ed922a)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
19 lines
519 B
Bash
Executable File
19 lines
519 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (C) 2018 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
set -ex
|
|
|
|
source "${BASH_SOURCE%/*}/../unix/sccache.sh"
|
|
|
|
targetVersion=v0.11.0
|
|
if [[ $(uname -m) == 'aarch64' ]]; then
|
|
targetArch=aarch64-unknown-linux-musl
|
|
sha1=b7606d0fb461c0aa7351f511d9223416a322d52a
|
|
else
|
|
targetArch=x86_64-unknown-linux-musl
|
|
sha1=ef389a20c85b732cccd48436a5e28ed40bed2806
|
|
fi
|
|
|
|
installSccache "$targetArch" "$targetVersion" "$sha1"
|