Skip to content

Commit

Permalink
Documentation fixes. (JetBrains#1377)
Browse files Browse the repository at this point in the history
  • Loading branch information
olonho authored Mar 2, 2018
1 parent e84db81 commit 2812480
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
3 changes: 2 additions & 1 deletion samples/androidNativeActivity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

2 changes: 1 addition & 1 deletion samples/csvparser/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion samples/gitchurn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion samples/gtk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion samples/libcurl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion samples/nonBlockingEchoServer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion samples/opengl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion samples/socket/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down

0 comments on commit 2812480

Please sign in to comment.