Web: Patch Emscripten 3.1.61 to include PR 19496, fixing threads+dlink build

This commit is contained in:
Rémi Verschelde
2024-06-28 14:08:27 +02:00
parent f504c58cb2
commit e0f31f640d

View File

@@ -5,6 +5,9 @@ ENV EMSCRIPTEN_VERSION=3.1.61
RUN git clone --branch ${EMSCRIPTEN_VERSION} --progress https://github.com/emscripten-core/emsdk && \
emsdk/emsdk install ${EMSCRIPTEN_VERSION} && \
emsdk/emsdk activate ${EMSCRIPTEN_VERSION}
emsdk/emsdk activate ${EMSCRIPTEN_VERSION} && \
cd emsdk/upstream/emscripten && \
curl -LO https://github.com/emscripten-core/emscripten/pull/19496.patch && \
patch -p1 < 19496.patch
CMD /bin/bash