mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-07 23:46:51 +08:00
Change-Id: I2a1250d2744d12f5d3f8122f7931c821c607f71b
Reviewed-by: Morten Johan Sørvig <morten.sorvig@qt.io>
Reviewed-by: Piotr Wierciński <piotr.wiercinski@qt.io>
(cherry picked from commit c052b991b0)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
58 lines
1.7 KiB
Bash
Executable File
58 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (C) 2023 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
|
|
|
|
# shellcheck source=./SetEnvVar.sh
|
|
source "${BASH_SOURCE%/*}/SetEnvVar.sh"
|
|
|
|
# shellcheck source=./DownloadURL.sh
|
|
source "${BASH_SOURCE%/*}/DownloadURL.sh"
|
|
|
|
version="3.1.70"
|
|
versionNode="v16.20.0"
|
|
tarBallVersion="${version//./_}"
|
|
if uname -a | grep -q Darwin; then
|
|
tarBallPackage="emsdk_macos_${tarBallVersion}.tar.gz"
|
|
sha="eafd7b96ab12d84183d2eaa62e8d39bb12c252bf"
|
|
else
|
|
tarBallPackage="emsdk_linux_${tarBallVersion}.tar.gz"
|
|
sha="047a3da9048edc71fb56af544c4bb2448d6c0644"
|
|
fi
|
|
cacheUrl="https://ci-files01-hki.ci.qt.io/input/emsdk/${tarBallPackage}"
|
|
target="/tmp/${tarBallPackage}"
|
|
|
|
mkdir -p /opt
|
|
cd /opt || exit
|
|
echo "URL: $cacheUrl"
|
|
|
|
if DownloadURL "$cacheUrl" "" "$sha" "$target"; then
|
|
sudo tar -xzf "$target" -C /opt/
|
|
sudo rm -f "$target"
|
|
else
|
|
echo "Emsdk isn't cached. Cloning it"
|
|
sudo git clone https://github.com/emscripten-core/emsdk.git
|
|
cd emsdk || exit
|
|
if ! sudo ./emsdk install "$version"; then
|
|
echo "Error: emsdk installation failed"
|
|
exit 1
|
|
fi
|
|
sudo ./emsdk activate "$version"
|
|
fi
|
|
|
|
# platform-specific toolchain and node binaries. urls obtained from "emsdk install"
|
|
if uname -a | grep -q Darwin; then
|
|
pathNodeExecutable="node-$versionNode-darwin-x64/bin/node"
|
|
else
|
|
pathNodeExecutable="node-$versionNode-linux-x64/bin/node"
|
|
fi
|
|
|
|
emsdkPath="/opt/emsdk/"
|
|
emscriptenPath="${emsdkPath}upstream/emscripten/"
|
|
|
|
SetEnvVar "PATH" "\"\$PATH:${emscriptenPath}\""
|
|
SetEnvVar "EMSCRIPTEN" "${emscriptenPath}"
|
|
SetEnvVar "EMSDK" "${emsdkPath}"
|
|
SetEnvVar "EMSDK_NODE" "${emsdkPath}${pathNodeExecutable}"
|
|
|
|
echo "Emsdk = $version" >> ~/versions.txt
|