aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2024-02-29 07:54:24 +0000
committerSimon Tatham <anakin@pobox.com>2024-02-29 07:55:38 +0000
commite20644a3baa70dfd5baf790047ce821b396df312 (patch)
treee2cca012a1ca9fc0540e6ffa9d74bc7a3d64f59f /cmake
parent7a93ae5d3c90cb5d1d8d775a8cd9d30bc745f658 (diff)
downloadpuzzles-e20644a3baa70dfd5baf790047ce821b396df312.zip
puzzles-e20644a3baa70dfd5baf790047ce821b396df312.tar.gz
puzzles-e20644a3baa70dfd5baf790047ce821b396df312.tar.bz2
puzzles-e20644a3baa70dfd5baf790047ce821b396df312.tar.xz
Emscripten build: stop setting MIN_EDGE_VERSION.
Emscripten 3.1.51 withdrew support for legacy (pre-Chrome) Edge completely, and this command-line option now provokes an error from the compiler.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/platforms/emscripten.cmake3
1 files changed, 0 insertions, 3 deletions
diff --git a/cmake/platforms/emscripten.cmake b/cmake/platforms/emscripten.cmake
index 1e2bf9a..8566f07 100644
--- a/cmake/platforms/emscripten.cmake
+++ b/cmake/platforms/emscripten.cmake
@@ -15,8 +15,6 @@ set(MIN_FIREFOX_VERSION 48 CACHE STRING
"Oldest major version of Firefox to target")
set(MIN_SAFARI_VERSION 110000 CACHE STRING
"Oldest version of desktop Safari to target (XXYYZZ for version XX.YY.ZZ)")
-set(MIN_EDGE_VERSION 16 CACHE STRING
- "Oldest version of (non-Chromium-based) Edge to target")
set(MIN_CHROME_VERSION 57 CACHE STRING
"Oldest version of Chrome to target")
@@ -68,7 +66,6 @@ set(CMAKE_C_LINK_FLAGS "\
-s EXPORTED_RUNTIME_METHODS='[cwrap]' \
-s MIN_FIREFOX_VERSION=${MIN_FIREFOX_VERSION} \
-s MIN_SAFARI_VERSION=${MIN_SAFARI_VERSION} \
--s MIN_EDGE_VERSION=${MIN_EDGE_VERSION} \
-s MIN_CHROME_VERSION=${MIN_CHROME_VERSION} \
-s MIN_NODE_VERSION=0x7FFFFFFF \
-s STRICT_JS=1")