-
Notifications
You must be signed in to change notification settings - Fork 514
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
Make it an error to try to use the server GC in macOS #16853
Comments
There is also the |
|
@rolfbjarne is there a possibility of adding Server GC support and short/mid term? |
@slluis it could probably be implemented, is it something that would be interesting for VSMac? It's not trivial though, because this is a rather complex area of the runtime. |
@rolfbjarne we are having many problems with GC pauses in VS Mac, and I'm being told by @sharwell that enabling Server GC together with other GC options made a huge difference on Windows. |
…age collection. Fixes xamarin#16853. Our runtime doesn't support server garbage collection: https://github.com/xamarin/xamarin-macios/blob/main/runtime/coreclr-bridge.m#L203-L210 Fixes xamarin#16853.
…age collection. Fixes #16853. (#20569) Our runtime doesn't support server garbage collection: https://github.com/xamarin/xamarin-macios/blob/main/runtime/coreclr-bridge.m#L203-L210 Fixes #16853.
Customer's should have to run into random issues due to this:
https://github.com/xamarin/xamarin-macios/blob/main/runtime/coreclr-bridge.m#L203-L210
we should just make this a build-time error.
It's probably enough to check for the
ServerGarbageCollection
property:dotnet/runtime#78280 (comment)
The text was updated successfully, but these errors were encountered: