Replies: 1 comment 9 replies
-
You can disable jiterpreter with |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am working on a project that uses Blazor and can use a lot of memory. We would love to have Memory64 support as mentioned in #94108 but for now we are limited to increasing the size of the heap from 2gb to 4gb. But it looks like this is not fully supported? When I enable this in our project I get out of bounds errors that look like an int overflow:
Should we be able to use
<EmccMaximumHeapSize>4294901760</EmccMaximumHeapSize>
to increase the size of the heap or should we not do this? I have created a discussion instead of an issue because I cannot create a small project that reproduces this. It looks likejit_call
is part of the Jiterpreter. Is there an option to disable this so we can check if increasing the heap size only causes issues in the Jiterpreter?Beta Was this translation helpful? Give feedback.
All reactions