From 44d07ef8298568d7601ef64f0b91fd98b0064c96 Mon Sep 17 00:00:00 2001 From: Alexander Gorshenev Date: Wed, 7 Dec 2016 12:30:24 +0300 Subject: [PATCH] Mentioned -opt in the README. --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f294a33039d..a67b4a8b73c 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Download dependencies: ./gradlew dependencies:update -Then build the compiler +Then build the compiler: ./gradlew dist @@ -12,6 +12,10 @@ After that you should be able to compile your programs like that: ./dist/bin/konanc hello.kt -o hello +For an optimized compilation use -opt: + + ./dist/bin/konanc hello.kt -o hello -opt + For more tests, use: ./gradlew backend.native:tests:run