You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Emscripten: No extra rustc-cdylib-link-args on Rust >= 1.95
We used to have to pass extra flags to build with Emscripten but
1. Emscripten 4.0.0 made WASM_BIGINT automatic
2. Rust version 1.95 learned how to build cdylibs rust-lang/rust#151704
We use Emscripten 3.1.58 to build for Python 3.12 which would be broken by
dropping WASM_BIGINT but for Python 3.12 we also use JS eh which doesn't
work at all with Rust version >= 1.93 so there's no added breakage.
On the other hand, Python 3.13 uses Emscripten 4.0.9 and doesn't need
`-sWASM_BIGINT`.
0 commit comments