mirror of https://github.com/qt/qt5.git
COIN: Fix sccache installation on ARM Macs
Install the ARM sccache binary to fix /usr/local/sccache/sccache: Bad CPU type in executable Change-Id: I033a7c8cf88d0d1ad35a4406a5d2a878da8d17a7 Reviewed-by: Toni Saario <toni.saario@qt.io> (cherry picked from commitc872c35cc6
) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> (cherry picked from commit91c649c20e
)
This commit is contained in:
parent
053f02a0b9
commit
5e15ff05c7
|
@ -6,7 +6,12 @@ set -ex
|
|||
|
||||
source "${BASH_SOURCE%/*}/../unix/sccache.sh"
|
||||
|
||||
targetArch=x86_64-apple-darwin
|
||||
targetVersion=0.2.14
|
||||
sha1=764bc1664c0ff616d9980a6d127175d0a2041781
|
||||
if [[ `arch` == arm* ]]; then
|
||||
targetArch=aarch64-apple-darwin
|
||||
sha1=ad10cd4b8889fa08e193a4165ac664876a27c0dc
|
||||
else
|
||||
targetArch=x86_64-apple-darwin
|
||||
sha1=764bc1664c0ff616d9980a6d127175d0a2041781
|
||||
fi
|
||||
installSccache "$targetArch" "$targetVersion" "$sha1"
|
||||
|
|
Loading…
Reference in New Issue