From 4134959d3d04a3a09853412090a3b54915284abd Mon Sep 17 00:00:00 2001 From: Kleis Auke Wolthuizen Date: Sat, 16 Dec 2023 11:22:40 +0100 Subject: [PATCH] Update Emscripten Docker image to 3.1.51 --- CHANGELOG.md | 2 +- Dockerfile | 4 ++-- src/CMakeLists.txt | 1 - 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fedf137f..0c1d1b7d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [v0.0.8] - TBD -Uses libvips v8.15.0, compiled with Emscripten v3.1.50. +Uses libvips v8.15.0, compiled with Emscripten v3.1.51. ## [v0.0.7] - 2023-11-12 diff --git a/Dockerfile b/Dockerfile index 1b76cfe2d..4a869dde7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # https://github.com/emscripten-core/emsdk -FROM docker.io/emscripten/emsdk:3.1.50 +FROM docker.io/emscripten/emsdk:3.1.51 # Path settings ENV \ @@ -25,7 +25,7 @@ RUN \ # Emscripten patches RUN \ - curl -Ls https://github.com/emscripten-core/emscripten/compare/3.1.50...kleisauke:wasm-vips-3.1.50.patch | patch -p1 -d $EMSDK/upstream/emscripten && \ + curl -Ls https://github.com/emscripten-core/emscripten/compare/3.1.51...kleisauke:wasm-vips-3.1.51.patch | patch -p1 -d $EMSDK/upstream/emscripten && \ emcc --clear-cache && embuilder build sysroot --force # Rust diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 3ff7f8959..c10ef240e 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -172,7 +172,6 @@ if ("web" IN_LIST ENVIRONMENT) ) set(WEB_MIN_TARGETS -sMIN_FIREFOX_VERSION=89 - -sMIN_EDGE_VERSION=91 -sMIN_CHROME_VERSION=91 )