mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-01 11:26:04 +08:00
Custom patched packages for windows. Also Add Windows on arm support. Pick-to: 6.11 6.10 6.8 Fixes: COIN-740 Change-Id: I27f7d36b3501be2a2011b9b8dfa0ec846cd57bf5 Reviewed-by: Jukka Jokiniva <jukka.jokiniva@qt.io>
18 lines
504 B
Bash
Executable File
18 lines
504 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (C) 2019 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 [[ `arch` == arm* ]]; then
|
|
targetArch=aarch64-apple-darwin
|
|
sha1=3261ab99e5bb1f9f36eafa597d11491bd85da5ec
|
|
else
|
|
targetArch=x86_64-apple-darwin
|
|
sha1=57810789bf2813dfa9bf5da26a712dc30b56ce16
|
|
fi
|
|
installSccache "$targetArch" "$targetVersion" "$sha1"
|