未验证 提交 2812480a 编写于 作者: N Nikolay Igotti 提交者: GitHub

Documentation fixes. (#1377)

上级 e84db81f
## v0.6.1 (Mar 2018) ## v0.6.1 (Mar 2018)
* Various bugfixes * Various bugfixes
* Support total ordering in FP comparisons * 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 * STM32 blinky demo in pure Kotlin/Native
* Top level variables initialization redesign (proper dependency order) * Top level variables initialization redesign (proper dependency order)
* Support kotlin.math on WebAssembly targets * Support kotlin.math on WebAssembly targets
......
...@@ -13,6 +13,7 @@ without the need to ship an additional execution runtime. ...@@ -13,6 +13,7 @@ without the need to ship an additional execution runtime.
Prerequisites: Prerequisites:
* install JDK for your platform, instead of JRE. The build requires ```tools.jar```, which is not included in JRE; * 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 macOS install Xcode 9.2
* on Fedora 26+ ```yum install ncurses-compat-libs``` may be needed
To compile from sources use following steps: To compile from sources use following steps:
......
...@@ -8,5 +8,6 @@ See https://developer.android.com/studio/index.html for more details on Android ...@@ -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`. 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). 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 ...@@ -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 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 It will print number of all unique entries in fifth column
(Family, zero-based index) in first 100 rows of the CSV file. (Family, zero-based index) in first 100 rows of the CSV file.
...@@ -12,6 +12,6 @@ or pass `-PrunArgs="../../"` to gradle run. ...@@ -12,6 +12,6 @@ or pass `-PrunArgs="../../"` to gradle run.
Alternatively you can run artifact directly 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. 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 ...@@ -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 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 Dialog box with the button will be shown, and application will print message
and terminate on button click. and terminate on button click.
......
...@@ -12,6 +12,6 @@ or pass `-PrunArgs="https://www.jetbrains.com"` to gradle run. ...@@ -12,6 +12,6 @@ or pass `-PrunArgs="https://www.jetbrains.com"` to gradle run.
Alternatively you can run artifact directly 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. It will perform HTTP get and print out the data obtained.
...@@ -18,7 +18,7 @@ or pass `-PrunArgs="3000"` to gradle run. ...@@ -18,7 +18,7 @@ or pass `-PrunArgs="3000"` to gradle run.
Alternatively you can run artifact directly 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: Test the server by connecting to it, for example with telnet:
......
...@@ -9,7 +9,7 @@ To run use `../gradlew run` ...@@ -9,7 +9,7 @@ To run use `../gradlew run`
Alternatively you can run artifact directly 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 It will render 3D model of teapot. Feel free to experiment with it, the whole power of OpenGL
is at your hands. is at your hands.
...@@ -11,7 +11,7 @@ or pass `-PrunArgs="3000"` to gradle run. ...@@ -11,7 +11,7 @@ or pass `-PrunArgs="3000"` to gradle run.
Alternatively you can run artifact directly 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: Test the server by conecting to it, for example with telnet:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册