Jan Kotas
Jan Kotas
JITCodeManager can be excluded from the i386 completely (ie it can be included for x64 only). It is experimental component that is not required for CoreRT to work today.
https://github.com/dotnet/corert/blob/master/src/Native/jitinterface/CMakeLists.txt#L10 is a good place to do it.
We have been re-building ObjectWriter package from llilc repo manually as needed because of it is not changing frequently. Having the source for it in CoreRT repo makes sense. The...
> With current infrastructure, we have to first compile CoreCLR Compiling CoreCLR should not be required to compile ObjectWriter. > dependency on ObjectWriter for ILC is removed in future We...
You are welcomed to. cc @yowl
The browser-wasm support in the .NET SDK is specialized for ASP.NET blazor apps. I assume that you have tried this on a "hello world" app. Is this correct? I do...
This is a problem with the object layout or GC not respecting the required alignment. Does a program like this reproduce the crash? ``` using System; using System.Threading; using System.IO;...
Does it also crash immediately when you comment out the `new Thread(() => { GC.Collect(); Thread.Sleep(1); }).Start();` line in the repro?
The place to set a breakpoint is `RhpNewFastAlign8` and step through it. This method is supposed to return aligned pointer, but it is not doing that for some reason. The...
What is the stacktrace of the exception?