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
For the component model, eagerly loading the environment presents a problem for runtimes that call _initialize and __wasm_call_ctors This sequence results in the stack and failure:
Hi,
For the component model, eagerly loading the environment presents a problem for runtimes that call
_initialize
and__wasm_call_ctors
This sequence results in the stack and failure:When calling the component function
cabi_realloc
it is not permitted to make another component call , but that is what is happening here. Eagerly loading the environment (as I understand it), depends on the presence ofextern char** environ
which the dotnet runtime includes to support https://learn.microsoft.com/en-us/dotnet/api/system.environment.getenvironmentvariables?view=net-8.0 .If I make the change here, would it be likely to be flat out rejected?
The text was updated successfully, but these errors were encountered: