From ece953f53169cc179b2bd00e408805b98d76fc85 Mon Sep 17 00:00:00 2001 From: Gaurav Khanna Date: Wed, 25 Nov 2015 10:16:57 -0800 Subject: [PATCH] Update Readme for Mac CPPCodegen support --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 309147b38..8907f6d1d 100644 --- a/README.md +++ b/README.md @@ -57,14 +57,20 @@ Compiling to IL is done using: dotnet compile This will drop a binary in `./bin/[configuration]/[framework]/[binary name]` that you can just run. -**Note: the below is currently working on Windows and Ubuntu - OS X support coming soon!** +Finally, you can also try out native compilation on Windows and Ubuntu and Mac. -Finally, you can also try out native compilation on Windows and Linux. **Note:** at this point, only the `helloworld` and `dotnetbot` samples will work with native compilation. +***Note:** at this point, only the `helloworld` and `dotnetbot` samples will work with native compilation.* 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. + + dotnet compile --native --cpp + This will drop a native single binary in `./bin/[configuration]/[framework]/native/[binary name]` that you can run. +For more details, please refer to the [documentation](https://github.com/dotnet/corert/tree/master/Documentation). + Questions & Comments --------------------