This repo contains CoreRT, an experimental .NET Core runtime optimized for AOT (ahead of time compilation) scenarios, with the accompanying compiler toolchain.
Перейти к файлу
Tomas Rylek c5601bf8b8 Cleanup based on Michal's PR feedback
I have modified the change along Michal's suggestions. I have
removed the explicit setting of environment variables in the
tests\runtest.cmd script and instead I just added logic for forwarding
the gcstresslevel flag. For now I have kept the timeout constant
as an internal detail of the inner runtest script for CoreCLR.

At this moment I haven't made any changes to the build_and_run_test
script; for some reason it didn't work in gcstress mode even before
with the environment variables. I'm going to try to investigate whether
we might be able to get rid of this duality and use the same script
for building CoreCLR CPAOT tests in both scenarios.

Thanks

Tomas
2019-01-24 21:12:27 +01:00
.vscode Updated paths to ILC in docs and fixed .vscode/launch.json (#4212) 2017-07-21 21:53:46 +02:00
Documentation Linux improvements (fixing linker args & Documentation updates) (#6843) 2019-01-19 06:26:37 -08:00
buildpipeline R2R Test Release Build Fix (#6573) 2018-11-13 14:44:12 -08:00
buildscripts R2R Test Release Build Fix (#6573) 2018-11-13 14:44:12 -08:00
cross Add Bionic to sources.list for cross (#6417) 2018-10-02 15:22:01 -07:00
pkg Include CppCodeGen headers in the IL Compiler package (#6457) 2018-10-15 17:57:06 -07:00
samples Add native library sample (#6645) 2018-12-04 12:43:01 -08:00
src Remove variable name duplication (dotnet/coreclr#22155) 2019-01-23 12:54:28 -08:00
tests Cleanup based on Michal's PR feedback 2019-01-24 21:12:27 +01: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 Ready To Run Test Support (#6156) 2018-08-02 12:50:35 -07:00
.gitmirrorall
BuildToolsVersion.txt Update buildtools 2018-10-11 22:23:51 -07:00
DotnetCLIVersion.txt Fix build break in official build (#6326) 2018-09-12 17:34:29 -07:00
LICENSE.TXT
NuGet.config Update unit test projects to netstandard2.0 (#6295) 2018-09-06 11:13:43 -07:00
PATENTS.TXT
Packaging.props New ObjectWriter NuGet packaging scripts (#5667) 2018-04-09 16:51:17 -07:00
README.md Update CppCodegen status (#6812) 2019-01-11 14:20:33 -08: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 (#6797) 2019-01-15 14:42:41 +01:00
dir.props Update to official XUnit 2.4 (#6299) 2018-09-07 08:06:08 -07:00
dir.targets Update unit test projects to netstandard2.0 (#6295) 2018-09-06 11:13:43 -07:00
dir.traversal.targets Fix "build.cmd clean" (#4095) 2017-07-07 04:55:29 +02:00
init-tools.cmd Update to official XUnit 2.4 (#6299) 2018-09-07 08:06:08 -07:00
init-tools.msbuild Rev netcoreapp2.0 to netcoreapp2.1 (#5974) 2018-06-20 17:06:28 -07:00
init-tools.sh Update to official XUnit 2.4 (#6299) 2018-09-07 08:06:08 -07:00
netci.groovy Add ready-to-run CoreCLR tests to CI 2018-08-28 14:57:06 -07:00

README.md

.NET Core Runtime (CoreRT)

This repo contains the .NET Core runtime optimized for ahead of time compilation. The CoreRT compiler can compile a managed .NET Core application into a native (architecture specific) single-file executable that is easy to deploy. It can also produce standalone dynamic or static libraries that can be consumed by applications written in other programming languages. To learn more about CoreRT, see the intro document.

Try Our Samples

If you would like to give CoreRT a try, we publish daily snapshots of CoreRT to MyGet. Using CoreRT is as simple as adding a new package reference to your .NET Core project and publishing it. Check out one of our samples: a "Hello World" console app, a simple ASP.NET Core app, a MonoGame game or a native library. The README.md file in each sample's directory will guide you through the process step by step.

Platform Support

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

  • Windows, MacOS and Linux x64 w/ RyuJIT codegen: Simple apps. Check our ASP.NET Core and MonoGame samples.
  • Linux ARM w/ RyuJIT codegen: ElmSharp Hello Tizen application (detailed status)
  • CppCodeGen (targets all platforms that support C++): Simple C# programs. The big missing features are 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. Take a look at our documentation to find out about the architecture and learn how to build and test the repo.

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