corert
corert copied to clipboard
This repo contains CoreRT, an experimental .NET Core runtime optimized for AOT (ahead of time compilation) scenarios, with the accompanying compiler toolchain.
Greetings! I would like to request support for native compilation on KNC Xeon PHI. Thanks, coast
how run it on openwrt arm v7?
We are centralizing all experimental projects based on dotnet/runtime in a new https://github.com/dotnet/runtimelab repo. More details about this effort are in https://github.com/dotnet/runtime/issues/35609 . Runtime optimized for AOT and RyuJIT codegen...
I folowwed the instructons from [Here](https://github.com/dotnet/corert/tree/master/samples/WebApi) It fails to build because it cannot find objwriter There is a `libobjwriter.so` in `.nuget/packages/runtime.linux-x64.microsoft.dotnet.ilcompiler/1.0.0-alpha-29408-02/tools/` and I copied it to the same dir but...
Per our chat on gitter.im/dotnet/corert today, we are investigating whether or not it makes sense for us to put some work into getting LLVM as a backend for CoreRT. (For...
Link.exe is not available as a standalone tool and gets bundled with the Windows SDK/DDK that is a huge download. Investigate whether we can bundle [LLD](https://lld.llvm.org/). - [ ] make...
Say I've got the following core on a .net core console app: ``` static void Main(string[] args) { Console.WriteLine("Hello World!"); using(var stream = File.OpenRead(args[0])) using (var compressed = new ZipArchive(stream,...
Dear CoreRT team, Having followed this repo for now a couple of years and having developed a product depending on it, it's been quite a journey to follow the development...
Good day! I hit the following issue: dotnet publish -r win-x64 leads to numerous compilation errors  Inside the package is used Grpc.Core 2.28.1  Сompile with Microsoft.DotNet.ILCompiler 1.0.0-alpha-29408-02 Adding...
Tested on Fedora 32, as per `runtest.cmd` should affect Windows as well. On "all" selection `-test_filter_path` parameter for `tests/CoreCLR/runtest.py` is omitted and we getting into this branch: https://github.com/dotnet/corert/blob/b06c72e12f24523dfe58717328a3de1b9f37a397/tests/CoreCLR/runtest.py#L1873-L1874 There is...