From b3f43457bc1568f280308ae42995f52a893ca0ee Mon Sep 17 00:00:00 2001 From: Gaurav Khanna Date: Sat, 19 Dec 2015 15:19:57 -0800 Subject: [PATCH] Update CLI Readme.md for Mac JIT support --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cebfed7b8..a5d5158f6 100644 --- a/README.md +++ b/README.md @@ -59,18 +59,18 @@ Compiling to IL is done using: dotnet compile This will drop a binary in `./bin/[configuration]/[framework]/[binary name]` that you can just run. -Finally, you can also try out native compilation on Windows and Ubuntu and Mac. - -**Note:** at this point, only the `helloworld` and `dotnetbot` samples will work with native compilation. +Finally, you can also try out native compilation using RyuJIT as shown below: dotnet compile --native -On Mac OSX, we currently support the C++ Codegenerator (as shown below) and support for RyuJIT (as exemplified above) is coming soon. +The following command will perform native compilation using the C++ Codegenerator: dotnet compile --native --cpp This will drop a native single binary in `./bin/[configuration]/[framework]/native/[binary name]` that you can run. +**Note:** At this point, only the `helloworld` and `dotnetbot` samples will work with native compilation. + For more details, please refer to the [documentation](https://github.com/dotnet/corert/tree/master/Documentation). Building from source