Documentation fixes. (#1377)
This commit is contained in:
+1
-1
@@ -1,7 +1,7 @@
|
||||
## v0.6.1 (Mar 2018)
|
||||
* Various bugfixes
|
||||
* Support total ordering in FP comparisons
|
||||
* Interop generate string constants from string macrodefinitions
|
||||
* Interop generates string constants from string macrodefinitions
|
||||
* STM32 blinky demo in pure Kotlin/Native
|
||||
* Top level variables initialization redesign (proper dependency order)
|
||||
* Support kotlin.math on WebAssembly targets
|
||||
|
||||
@@ -13,6 +13,7 @@ without the need to ship an additional execution runtime.
|
||||
Prerequisites:
|
||||
* install JDK for your platform, instead of JRE. The build requires ```tools.jar```, which is not included in JRE;
|
||||
* on macOS install Xcode 9.2
|
||||
* on Fedora 26+ ```yum install ncurses-compat-libs``` may be needed
|
||||
|
||||
To compile from sources use following steps:
|
||||
|
||||
|
||||
@@ -8,5 +8,6 @@ See https://developer.android.com/studio/index.html for more details on Android
|
||||
|
||||
To build use `ANDROID_HOME=<your path to android sdk> ../gradlew buildApk`.
|
||||
|
||||
Run `$ANDROID_HOME/sdk/platform-tools/adb install -r build/outputs/apk/androidNativeActivity-arm-debug.apk`
|
||||
Run `$ANDROID_HOME/platform-tools/adb install -r build/outputs/apk/debug/androidNativeActivity-debug.apk`
|
||||
to deploy the apk on the Android device or emulator (note that only ARM-based devices are currently supported).
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ or pass `-PrunArgs="./European_Mammals_Red_List_Nov_2009.csv 4 100"` to gradle r
|
||||
|
||||
Alternatively you can run artifact directly
|
||||
|
||||
./build/konan/bin/CsvParser/CsvParser.kexe ./European_Mammals_Red_List_Nov_2009.csv 4 100
|
||||
./build/konan/bin/<target>/CsvParser.kexe ./European_Mammals_Red_List_Nov_2009.csv 4 100
|
||||
|
||||
It will print number of all unique entries in fifth column
|
||||
(Family, zero-based index) in first 100 rows of the CSV file.
|
||||
|
||||
@@ -12,6 +12,6 @@ or pass `-PrunArgs="../../"` to gradle run.
|
||||
|
||||
Alternatively you can run artifact directly
|
||||
|
||||
./build/konan/bin/GitChurn/GitChurn.kexe ../../
|
||||
./build/konan/bin/<target>/GitChurn.kexe ../../
|
||||
|
||||
It will print most frequently modified (by number of commits) files in repository.
|
||||
|
||||
@@ -14,7 +14,7 @@ To run on Mac also install XQuartz X server (https://www.xquartz.org/), and then
|
||||
|
||||
Alternatively you can run artifact directly
|
||||
|
||||
./build/konan/bin/Gtk3Demo/Gtk3Demo.kexe
|
||||
./build/konan/bin/<platform>/Gtk3Demo.kexe
|
||||
|
||||
Dialog box with the button will be shown, and application will print message
|
||||
and terminate on button click.
|
||||
|
||||
@@ -12,6 +12,6 @@ or pass `-PrunArgs="https://www.jetbrains.com"` to gradle run.
|
||||
|
||||
Alternatively you can run artifact directly
|
||||
|
||||
./build/konan/bin/Curl/Curl.kexe https://www.jetbrains.com
|
||||
./build/konan/bin/<platform>/Curl.kexe https://www.jetbrains.com
|
||||
|
||||
It will perform HTTP get and print out the data obtained.
|
||||
|
||||
@@ -18,7 +18,7 @@ or pass `-PrunArgs="3000"` to gradle run.
|
||||
|
||||
Alternatively you can run artifact directly
|
||||
|
||||
./build/konan/bin/EchoServer/EchoServer.kexe 3000 &
|
||||
./build/konan/bin/<platform>/EchoServer.kexe 3000 &
|
||||
|
||||
Test the server by connecting to it, for example with telnet:
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ To run use `../gradlew run`
|
||||
|
||||
Alternatively you can run artifact directly
|
||||
|
||||
./build/konan/bin/OpenGlTeapot${target}/OpenGlTeapot${target}.kexe
|
||||
./build/konan/bin/<platform>/OpenGlTeapot.kexe
|
||||
|
||||
It will render 3D model of teapot. Feel free to experiment with it, the whole power of OpenGL
|
||||
is at your hands.
|
||||
|
||||
@@ -11,7 +11,7 @@ or pass `-PrunArgs="3000"` to gradle run.
|
||||
|
||||
Alternatively you can run artifact directly
|
||||
|
||||
./build/konan/bin/EchoServer/EchoServer.kexe 3000 &
|
||||
./build/konan/bin/<platform>/EchoServer.kexe 3000 &
|
||||
|
||||
Test the server by conecting to it, for example with telnet:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user