Merge pull request #626 from gkhanna79/FixDoc

Update CLI Readme.md for Mac JIT support
This commit is contained in:
Gaurav Khanna 2015-12-19 18:10:36 -08:00
commit 16d5e66891

View file

@ -59,18 +59,18 @@ Compiling to IL is done using:
dotnet compile dotnet compile
This will drop a binary in `./bin/[configuration]/[framework]/[binary name]` that you can just run. 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. Finally, you can also try out native compilation using RyuJIT as shown below:
**Note:** at this point, only the `helloworld` and `dotnetbot` samples will work with native compilation.
dotnet compile --native 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 dotnet compile --native --cpp
This will drop a native single binary in `./bin/[configuration]/[framework]/native/[binary name]` that you can run. 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). For more details, please refer to the [documentation](https://github.com/dotnet/corert/tree/master/Documentation).
Building from source Building from source