We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb27707 commit 044c7cfCopy full SHA for 044c7cf
scripts/emsdk-fetch.sh
@@ -18,8 +18,13 @@ then
18
if git clone --no-tags --depth 1 --single-branch --branch main https://github.com/emscripten-core/emsdk.git
19
then
20
pushd emsdk
21
- ./emsdk install ${EMFLAVOUR:-latest}
22
- ./emsdk activate ${EMFLAVOUR:-latest}
+ ./emsdk install ${EMFLAVOUR:-latest}
+ ./emsdk activate ${EMFLAVOUR:-latest}
23
+ pushd upstream/emscripten
24
+ echo "FIXME: Applying https://github.com/emscripten-core/emscripten/pull/17956"
25
+ wget https://patch-diff.githubusercontent.com/raw/emscripten-core/emscripten/pull/17956.diff
26
+ patch -p1 < 17956.diff
27
+ popd
28
popd
29
fi
30
0 commit comments