Docker: remove remnant of fastcomp (#1226)

The fastcomp backend was removed in Emscripten v2.0.0.
This commit is contained in:
Kleis Auke Wolthuizen
2023-06-01 17:24:59 +02:00
committed by GitHub
parent 3009d69b2b
commit 57539391aa

View File

@@ -46,8 +46,6 @@ RUN echo "## Aggressive optimization: Remove debug symbols" \
&& strip -s `which node` \
# Tests consume ~80MB disc space
&& rm -fr ${EMSDK}/upstream/emscripten/tests \
# Fastcomp is not supported
&& rm -fr ${EMSDK}/upstream/fastcomp \
# strip out symbols from clang (~extra 50MB disc space)
&& find ${EMSDK}/upstream/bin -type f -exec strip -s {} + || true \
&& echo "## Done"