This repo contains CoreRT, an experimental .NET Core runtime optimized for AOT (ahead of time compilation) scenarios, with the accompanying compiler toolchain.
Перейти к файлу
Jeff Greene 3b9a7fc3fc implemented newobj for WASM using malloc (#4808)
implemented newobj using malloc, added evaluation stack spillage and cut down on unneeded llvm casts
2017-10-31 17:41:14 -07:00
.vscode Updated paths to ILC in docs and fixed .vscode/launch.json (#4212) 2017-07-21 21:53:46 +02:00
Documentation Merge pull request #4831 from dotnet/master 2017-10-29 08:33:11 -07:00
buildpipeline Fix docker image used for official builds from Debian to Ubuntu (#4830) 2017-10-28 08:06:18 -07:00
buildscripts Fix standalone run of init-tools.sh (#4802) 2017-10-26 21:59:49 +02:00
cross [x86] x86 cross build on x64 host (#4675) 2017-10-05 06:32:40 -07:00
pkg Delete ToolsVersion attribute from msbuild files 2017-06-17 13:12:18 -07:00
src implemented newobj for WASM using malloc (#4808) 2017-10-31 17:41:14 -07:00
tests implemented newobj for WASM using malloc (#4808) 2017-10-31 17:41:14 -07:00
.editorconfig Add .editorconfig (#3001) 2017-03-16 18:41:57 -07:00
.gitattributes Add *.in text eol=lf to .gitattributes (#2579) 2017-01-24 20:08:45 -08:00
.gitignore [ILVerify] Added first tests (#3725) 2017-05-31 11:09:28 -07:00
.gitmirrorall Enable mirroring 2015-10-28 12:32:36 -07:00
BuildToolsVersion.txt Update buildtools version (#4751) 2017-10-17 19:13:06 -07:00
DotnetCLIVersion.txt Updating CLI to 2.0.0 version (#4667) 2017-10-03 22:06:17 -07:00
LICENSE.TXT Update licensing headers 2016-01-27 21:18:14 -08:00
NuGet.config Update CoreRT build to use latest .NET CLI and build tools (#3916) 2017-06-24 11:10:44 -07:00
PATENTS.TXT Adding things to patents 2015-11-17 22:58:13 -08:00
Packaging.props Delete ToolsVersion attribute from msbuild files 2017-06-17 13:12:18 -07:00
README.md Add paragraph on platform support status (#4605) 2017-09-25 19:50:18 -07:00
THIRD-PARTY-NOTICES.TXT Update Lincense Info (#3615) 2017-05-15 13:01:28 -07:00
build.cmd Fix rough edges after CLI update (#3983) 2017-06-26 17:10:12 -07:00
build.proj Update CoreRT build to use latest .NET CLI and build tools (#3916) 2017-06-24 11:10:44 -07:00
build.sh Split build scripts for CI (#2309) 2016-12-08 09:56:38 -06:00
dependencies.props Update RyuJIT (#4791) 2017-10-24 14:26:21 -07:00
dir.props Update to BuildTools with latest Roslyn 2017-10-03 19:48:29 -07:00
dir.targets Fix VS2017 IntelliSense (#4643) 2017-10-02 14:51:12 -07:00
dir.traversal.targets Fix "build.cmd clean" (#4095) 2017-07-07 04:55:29 +02:00
init-tools.cmd Updating CLI to 2.0.0 version (#4667) 2017-10-03 22:06:17 -07:00
init-tools.msbuild Update CoreRT build to use latest .NET CLI and build tools (#3916) 2017-06-24 11:10:44 -07:00
init-tools.sh Fix init-tools when launched from a different directory (#4815) 2017-10-26 23:59:02 +02:00
netci.groovy Update CI to OSX10.12 (#3920) 2017-06-18 17:14:49 -07:00

README.md

.NET Core Runtime (CoreRT)

This repo contains the .NET Core runtime optimized for AOT compilation

Platform Support

This is a work in progress. The current state of platform support:

  • Windows x64 w/ RyuJIT codegen: Simple ASP.NET apps compile and run with some workarounds
  • MacOS and Linux x64 w/ RyuJIT codegen: Same as Windows, the libraries are less complete.
  • Linux ARM w/ RyuJIT codegen: "Hello world"
  • CppCodeGen (targets all platforms that support C++): Simple C# programs. The big missing features are reflection, garbage collection and exception handling.
  • WebAssembly: Early prototype that compiles and runs very trivial programs only. Many features are not yet implemented.

How to Engage, Contribute and Provide Feedback

Some of the best ways to contribute are to try things out, file bugs, and join in design conversations.

Looking for something to work on? The up for grabs issues are a great place to start or take a look at our documentation.

This project follows the .NET Core Contribution Guidelines.

Join the chat at https://gitter.im/dotnet/corert

Reporting security issues and security bugs

Security issues and bugs should be reported privately, via email, to the Microsoft Security Response Center (MSRC) secure@microsoft.com. You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Further information, including the MSRC PGP key, can be found in the Security TechCenter.

License

The CoreRT Repo is licensed under the MIT license.

.NET Foundation

CoreRT is a .NET Foundation project.

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information, see the .NET Foundation Code of Conduct.

There are many .NET related projects on GitHub.

Build Status

Ubuntu 14.04 Windows Mac OS X
Debug Build status Build status Build Status
Release Build status Build status Build Status