Hacker News new | ask | show | jobs
by davidpelaez 3061 days ago
I would also appreciate a little comment on this because the readme doesn't do much explaining what it is, why it's important, how it's different from .NET Core 2 compiler? To put it in another way, why is this so relevant?
2 comments

It is the POSIX version of .NET Native, for AOT compilation into native code.

Using a much better compiler backend than NGEN, similar to Mono when targeting iOS.

Additionally, it is also adding WASM as target "CPU".

.NET Core only does JIT currently, the generated binary is a mini-bootstrap code that starts the runtime and feeds the main application Assembly into it.

Thanks for the explanation. It’s good to see that Microsoft finally decided to port .net native to other platforms than uwp.
Seems like this can/will target webassembly.
The is already a partial backend for webassembly in the repo.