-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[wasm] WBT: fix failing no-trimming test #93950
Conversation
The test build gets terminated with: `Precompiling failed for /root/helix/work/workitem/e/wbt/4hiqh2hp_nji/obj/Release/net8.0/browser-wasm/wasm/for-publish/aot-in/aot-instances.dll with exit code 137` .. while compiling `aot-instances.dll`, with 190+ assemblies when not trimming. Since, the particular tests terminate the build after this step, and don't need the output, use `WasmDedup=false` to avoid using `aot-instances.dll` at all. Fixes dotnet#93522
Tagging subscribers to 'arch-wasm': @lewing Issue DetailsThe test build gets terminated with: .. while compiling Fixes #93522
|
Note that aot+no linking will lead to very slow compilation times, so it might be a good idea to not allow it at all. |
I will update the PR. |
Looks like we still fail with this error when compiling corelib in the latest build: |
The test build gets terminated with:
Precompiling failed for /root/helix/work/workitem/e/wbt/4hiqh2hp_nji/obj/Release/net8.0/browser-wasm/wasm/for-publish/aot-in/aot-instances.dll with exit code 137
.. while compiling
aot-instances.dll
, with 190+ assemblies when nottrimming. Since, the particular tests terminate the build after this
step, and don't need the output, use
WasmDedup=false
to avoid usingaot-instances.dll
at all.Fixes #93522