File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ printf '%s\n' 'import.meta.url ??= "";' | cat - ./src/dotnet/bin/Release/net9.0/
2727echo " Copying symbol maps..." | tee -a " $BUILD_LOG "
2828cp ./src/dotnet/obj/Release/net9.0/wasm/for-publish/dotnet.native.js.symbols ./build-interp/wwwroot/_framework/
2929
30+ # Net9 and Net10 use Emscripten version 3.1.56, which emits legacy EH, see https://github.com/WebKit/JetStream/pull/188
31+ # FIXME: Update toolchain to Net11 once available, then remove this wasm-opt call.
3032for wasmFile in $( find " ./build-interp" -type f -name " *.wasm" ) ;
3133do
3234 wasm-opt " $wasmFile " --translate-to-exnref --enable-bulk-memory --enable-exception-handling --enable-simd --enable-reference-types --enable-multivalue -o " $wasmFile "
@@ -41,6 +43,8 @@ printf '%s\n' 'import.meta.url ??= "";' | cat - ./build-aot/wwwroot/_framework/d
4143echo " Copying symbol maps..." | tee -a " $BUILD_LOG "
4244cp ./src/dotnet/obj/Release/net9.0/wasm/for-publish/dotnet.native.js.symbols ./build-aot/wwwroot/_framework/
4345
46+ # Net9 and Net10 use Emscripten version 3.1.56, which emits legacy EH, see https://github.com/WebKit/JetStream/pull/188
47+ # FIXME: Update toolchain to Net11 once available, then remove this wasm-opt call.
4448for wasmFile in $( find " ./build-aot" -type f -name " *.wasm" ) ;
4549do
4650 wasm-opt " $wasmFile " --translate-to-exnref --enable-bulk-memory --enable-exception-handling --enable-simd --enable-reference-types --enable-multivalue -o " $wasmFile "
You can’t perform that action at this time.
0 commit comments