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 --------------------