-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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][aot] Figure out how to handle APIs not supported on AOT #53825
Comments
Tagging subscribers to 'arch-wasm': @lewing Issue DetailsSome APIs, like Example case: #53815 How is this handled for non-wasm+aot cases?
|
I couldn't figure out the best area label to add to this issue. If you have write-permissions please help me learn by adding exactly one area label. |
/cc @akoeplinger |
We could make a mono AOT analyzer that look for attributes when AOT is enabled, I'm not sure there is a more general way to solve this. It would apply to mobile scenarios too. |
Some APIs, like
Assembly.GetCallingAssembly()
are not supported on wasm/AOT. We should have a clear behavior for this, eg. throw an exception, or maybe mark these APIs, so that the user is aware that these are not supported.Example case: #53815
How is this handled for non-wasm+aot cases?
cc @vargaz @steveisok
The text was updated successfully, but these errors were encountered: