Skip to content

Commit b90ea21

Browse files
authored
build: Add ARM cpu targets (#115)
1 parent 2e5d985 commit b90ea21

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ Currently, artifacts for the following platforms are supported:
3232

3333
The supported Native targets are (following the Kotlin/Native [target support guidelines][1]):
3434

35-
| Tier 1 | Tier 2 | Tier 3 |
36-
|:---------|:---------|:---------|
37-
| macosX64 | linuxX64 | mingwX64 |
35+
| Tier 1 | Tier 2 | Tier 3 |
36+
|:------------------|:------------------|:---------|
37+
| macosX64 | linuxX64 | mingwX64 |
38+
| macosArm64 | linuxArm64 | |
3839

3940
[1]: https://kotlinlang.org/docs/native-target-support.html

build.gradle.kts

+2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,10 @@ kotlin {
8282
}
8383

8484
linuxX64()
85+
linuxArm64()
8586
mingwX64()
8687
macosX64()
88+
macosArm64()
8789

8890
sourceSets {
8991
commonTest {

0 commit comments

Comments
 (0)