Jan Kotas

Results 421 comments of Jan Kotas

CoreRT does not yet read the directives for delegate marshaling from rd.xml. Here are the workarounds that should work today: - Mark the delegates that are used with interop with...

Yes, it is possible. Take a look at our samples: https://github.com/dotnet/corert/tree/master/samples Note that CoreRT does not support all .NET features (for example, Reflection.Emit and COM interop are not supported). Whether...

Could you please share the list of the files that you see in your publish directory and that you do not expect it to be there?

No. The 3.0 solution for WinForms and WPF is discussed in https://github.com/dotnet/coreclr/issues/20287.

Related / partial duplicate: https://github.com/dotnet/dnceng/issues/1290

Could you please run `ldd /home/alex/.nuget/packages/runtime.linux-x64.microsoft.dotnet.ilcompiler/1.0.0-alpha-29408-02/tools/libobjwriter.so` ? It will show you any missing dependencies. The most likely problem is that you are missing some of the [prerequisites](https://github.com/dotnet/corert/blob/master/samples/prerequisites.md).

I suspect that newer macOS does not like switching the page protection on pages mapped from the binary. Allocating the special page using mmap like what we are doing in...

Yes, you are right (I was looking in the wrong place). I do not see anything obviously different. CoreCLR works fine Rosette 2 as far we know. It would be...

@christianscheuer Do you plan to send a PR for this one as well?

> This adds additional boilerplate code to async methods in support of the exceptional path. That means some increase in binary size to support improving the performance of a scenario...