Skip to content

Commit e6fb440

Browse files
authored
Actualize building instructions (#2639)
There's no `native.deploy` flag anymore.
1 parent d0ae697 commit e6fb440

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

docs/building.md

+7-10
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
To build Kotlin Serialization JDK version 11 or higher is required. Make sure this is your default JDK (`JAVA_HOME` is set accordingly).
66
This is needed to compile the `module-info` file included for JPMS support.
77

8-
In case you are determined to use different JDK version, or experience problems with JPMS you can turn off compilation of modules
8+
In case you are determined to use a different JDK version or experience problems with JPMS, you can turn off compilation of module-info files
99
completely with `disableJPMS` property: add `disableJPMS=true` to gradle.properties or `-PdisableJPMS` to Gradle CLI invocation.
1010

1111
## Runtime library
1212

1313
Kotlin Serialization runtime library itself is a [multiplatform](http://kotlinlang.org/docs/reference/multiplatform.html) project.
14-
To build library from the source and run all tests, use `./gradlew build`. Corresponding platform tasks like `jvmTest`, `jsTest`, `nativeTest` and so on are also available.
14+
To build the library from the source and run all tests, use `./gradlew build`. Corresponding platform tasks like `jvmTest,` `jsTest,` `macosArm64Test`, and so on are also available.
1515

16-
Project can be opened in in Intellij IDEA without additional prerequisites.
16+
The project can be opened in IntelliJ IDEA without additional prerequisites.
1717
In case you want to work with Protobuf tests, you may need to run `./gradlew generateTestProto` beforehand.
1818

1919

@@ -30,19 +30,16 @@ dependencies {
3030
}
3131
```
3232

33-
Note that by default, only one Native target is built (the one that is the current host, e.g. `macosX64` on Intel Mac machines, `linuxX64` on linux machines, etc).
34-
To compile and publish all Native artifacts, not only the host one, use Gradle property `native.deploy=true`.
35-
36-
To use snapshot version of compiler (if you have built and install it from sources), use flag `-Pbootstrap`.
33+
To use snapshot version of compiler (if you have built and installed it from sources), use flag `-Pbootstrap`.
3734
If you have built both Kotlin and Kotlin/Native compilers, set `KONAN_LOCAL_DIST` environment property to the path with Kotlin/Native distribution
3835
(usually `kotlin-native/dist` folder inside Kotlin project).
3936

40-
`master` and `dev` branches of library should be binary compatible with latest released compiler plugin. In case you want to test some new features from other branches,
37+
The `master` and `dev` branches of the library should be binary compatible with the latest released compiler plugin. In case you want to test some new features from other branches,
4138
which are still in development and may not be compatible in terms of bytecode produced by plugin, you'll need to build the plugin by yourself.
4239

4340
## Compiler plugin
4441

45-
Compiler plugin for Gradle/Maven and IntelliJ plugin, starting from Kotlin 1.3, are embedded into the Kotlin compiler.
42+
Compiler plugins for Gradle/Maven and IntelliJ plugin, starting from Kotlin 1.3, are embedded into the Kotlin compiler.
4643

4744
Sources and steps to build it are located [here](https://github.com/JetBrains/kotlin/tree/master/plugins/kotlinx-serialization).
48-
In short, you'll just need to run `./gradlew dist install` to get `1.x.255-SNAPSHOT` versions of Kotlin compiler, stdlib and serialization plugins in the Maven local repository.
45+
In short, you'll just need to run `./gradlew dist install` to get `2.x.255-SNAPSHOT` versions of Kotlin compiler, stdlib, and serialization plugins in the Maven local repository.

0 commit comments

Comments
 (0)