Skip to content

Commit

Permalink
Merge pull request #704 from Willy-JL/ios14-wasm-compat
Browse files Browse the repository at this point in the history
Disable WASM sign extension ops for iOS 14 Safari
  • Loading branch information
elpiel authored Aug 19, 2024
2 parents 75e674d + 652c03b commit 9e27bd7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions stremio-core-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,9 @@ tracing-wasm = "0.2"

[dev-dependencies]
wasm-bindgen-test = "0.3.0"

[package.metadata.wasm-pack.profile.release]
# iOS 12 Safari - unsupported, flag is insufficient for this version to work and out-of-scope for now
# iOS 14 Safari - unsupported, we need to use `--signext-lowering`
# iOS 15 Safari - supported without this flag, current version is tested and works
wasm-opt = ["--signext-lowering"]

0 comments on commit 9e27bd7

Please sign in to comment.