From bcee98486fe83e6da92f481a1abe103e48fe8975 Mon Sep 17 00:00:00 2001 From: Eberhard Beilharz Date: Wed, 30 Aug 2023 19:38:33 +0200 Subject: [PATCH] docs(linux): Explicitly specify emscripten version emscripten 3.1.44 works, but 3.1.45 fails, so this change modifies the documentation to explicitly request `3.1.44` instead of `latest`. --- docs/build/linux-ubuntu.md | 4 ++-- linux/Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/build/linux-ubuntu.md b/docs/build/linux-ubuntu.md index 3c4f4c57c1..27b829cac3 100644 --- a/docs/build/linux-ubuntu.md +++ b/docs/build/linux-ubuntu.md @@ -69,8 +69,8 @@ You'll also have to install `emscripten` (version 3.1.44 is known to work): ```shell git clone https://github.com/emscripten-core/emsdk.git cd emsdk -./emsdk install latest -./emsdk activate latest +./emsdk install 3.1.44 +./emsdk activate 3.1.44 export EMSCRIPTEN_BASE=$(pwd)/upstream/emscripten ``` diff --git a/linux/Dockerfile b/linux/Dockerfile index 6852b54238..94994cc84a 100644 --- a/linux/Dockerfile +++ b/linux/Dockerfile @@ -40,8 +40,8 @@ RUN curl -sL https://deb.nodesource.com/setup_18.x | bash && \ RUN cd /usr/share && \ git clone https://github.com/emscripten-core/emsdk.git && \ cd emsdk && \ - ./emsdk install latest && \ - ./emsdk activate latest && \ + ./emsdk install 3.1.44 && \ + ./emsdk activate 3.1.44 && \ echo "#!/bin/bash" > /usr/bin/bashwrapper && \ echo "export EMSCRIPTEN_BASE=/usr/share/emsdk/upstream/emscripten" >> /usr/bin/bashwrapper