From 165cd81cfdf4eb782ef2525d0d19f4d019574135 Mon Sep 17 00:00:00 2001 From: Oneric Date: Fri, 1 Apr 2022 20:42:22 +0200 Subject: [PATCH] Update emscripten Freetype upstream made changes to remove the need for our fcstat patch, but we actually also need to update emscripten as linking to fstatfs is bugged in our currently used version and will lead to runtime errors. - Since emscripten 2.0.26 unresolved symbols cause errors at link time instead of only at runtime. - The following commit contained in 2.0.27 fixed fstatfs linking: https://github.com/emscripten-core/emscripten/commit/2126d3c1a64c9db2ab390b2c09fd91ef41d05b24 Cherry-picked from: https://github.com/libass/JavascriptSubtitlesOctopus/commit/f92d7cebca558cb0a99688cf1e5e78a80c80d3a2 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fd01e480..4f9592d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM emscripten/emsdk:2.0.20 +FROM docker.io/emscripten/emsdk:2.0.34 RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential \