wasm: update Emscripten to 3.1.50

Pick-to: 6.7
Change-Id: I39f3dbfce016a95a5c88b11596e666791c2311af
Reviewed-by: Morten Johan Sørvig <morten.sorvig@qt.io>
Reviewed-by: Piotr Wierciński <piotr.wiercinski@qt.io>
This commit is contained in:
Lorn Potter
2023-11-17 12:13:21 +10:00
committed by Piotr Wiercinski
parent 0c85cb928e
commit f0f3e42bf5
2 changed files with 6 additions and 6 deletions

View File

@@ -8,15 +8,15 @@ source "${BASH_SOURCE%/*}/SetEnvVar.sh"
# shellcheck source=./DownloadURL.sh
source "${BASH_SOURCE%/*}/DownloadURL.sh"
version="3.1.37"
versionNode="v14.18.2"
version="3.1.50"
versionNode="v16.20.0"
tarBallVersion="${version//./_}"
if uname -a |grep -q Darwin; then
tarBallPackage="emsdk_macos_${tarBallVersion}.tar.gz"
sha="fe9900b0f27ada608f25552dbd4a58bf62c6f05b"
sha="c12169ec8d22fc7a9ef1ba98027435bdf3b72729"
else
tarBallPackage="emsdk_linux_${tarBallVersion}.tar.gz"
sha="000bbd5666d8fc1afbf2dce1a7938ef0efeeab3f"
sha="5d81a8f1ddcb8d74c70ba5608efd4266c857944a"
fi
cacheUrl="https://ci-files01-hki.ci.qt.io/input/emsdk/${tarBallPackage}"
target="/tmp/${tarBallPackage}"

View File

@@ -5,11 +5,11 @@
# This script will install emscripten needed by WebAssembly
$version = "3.1.37"
$version = "3.1.50"
$zipVersion = $version -replace '\.', "_"
$temp = "$env:tmp"
$cacheUrl = "https://ci-files01-hki.ci.qt.io/input/emsdk/emsdk_windows_${zipVersion}.zip"
$sha = "5e5c0f50a940be09b82bf8256434f4510270e208"
$sha = "40dc636688166ecdb476da40d02c491ee5032f7b"
# Make sure python is in the path
Prepend-Path "C:\Python27"