Aleksey Kliger (λgeek)
Aleksey Kliger (λgeek)
I believe that we can sometimes be more strict than .NET Framework about trying to reference unused types. (And occasionally it is the other way around). I don't like this...
To do this right isn't easy - Mono's `MonoType` can't easily represent either of these things: 1. a type spec that we haven't tried to resolve yet. or 2. a...
@zfigura The difference is that in a lot of places before we do anything interesting with a `MonoClass` we do a check with `mono_class_has_failure` and then immediately bail out in...
`System.Array.Reverse(T[], int, int)` is not in .NET Framework 4.7.1, nor in Mono, and not in .NET Standard 2.0 - it appears to be just in .NET Core 2.0. (Compare: [.NET...
@akoeplinger Where in mono is `System.Array::Reverse(T[], Int32, Int32)` defined? because the line you pointed at is compiled to that generic method (which is only in .NET Core 2.0). If you...
@akoeplinger Ah, you're right. I missed that while grepping. In that case I don't understand how we could be getting a MissingMethodException when the method is not missing...
Hi @ryan-bunker, thanks for the bug report. Could you tell me what you're trying to accomplish? Is the goal to build a working Mono runtime on a Mac that will...
@klasyc in order to cross-compile you need to generate an "offsets header file" using [offsets-tool](https://github.com/mono/mono/tree/main/mono/tools/offsets-tool) and pass the path of the offsets file to `configure` using `--with-cross-offsets=xyz.h` For example this...
> After some additional digging I managed to compile the offsets file, but at its beginning it contains `#ifndef HAVE_BOEHM_GC` macro which prevents my offset definitions from being used. My...
@pavelsavara get rid of this https://github.com/dotnet/runtime/blob/e0287b742e51010371b1ab2069df466abbc3fa80/src/mono/wasm/wasm.proj#L85-L88 I'm not sure about the ICU error (although maybe it's related? does ICU depend on zlib?)