Merge pull request #330 from gkhanna79/FixCLIMacInstr

Update Readme for Mac CPPCodegen support
This commit is contained in:
Gaurav Khanna 2015-11-25 13:50:17 -08:00
commit e80e3259cd

View file

@ -57,14 +57,20 @@ 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.
**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 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. 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 Questions & Comments
-------------------- --------------------