Can we use emit on wasm with Mixed Interpreter and AOT Mode
?
#20736
-
I have push the wasm app with: <WasmBuildNative>true</WasmBuildNative>
<WasmShellEnableJiterpreter>true</WasmShellEnableJiterpreter>
<WasmShellMonoRuntimeExecutionMode>InterpreterAndAOT</WasmShellMonoRuntimeExecutionMode>
<JsonSerializerIsReflectionEnabledByDefault>true</JsonSerializerIsReflectionEnabledByDefault> but the wasm app crashed when using emit eg. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Thanks for the report. Make sure to provide details of what crashes, where and when. A repro would be useful, as always :) |
Beta Was this translation helpful? Give feedback.
-
After my attempts, I found that emit is feasible in mixed mode. My problem is that a part of the assembly is missing from the link file. |
Beta Was this translation helpful? Give feedback.
After my attempts, I found that emit is feasible in mixed mode. My problem is that a part of the assembly is missing from the link file.
Is there a way to know which assemblies are missing during the AOT process instead of just interrupting directly at runtime? even if the upper level logic related assemblies are already included in the link file, their dependent assemblies will still be pruned. @jeromelaban