Skip to content

Commit 7d61530

Browse files
committed
fix(build): allow building Linux targets on Mac host
1 parent f2c0809 commit 7d61530

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
55
## [Unreleased]
66

77
- Remove deprecated Kotlin/Native targets. See [kotl.in/native-targets-tiers](https://kotl.in/native-targets-tiers).
8+
- Fix build configuration error that prevented Linux targets from published. Versions 2.3.0 through 2.3.2 did not have Linux artifacts published.
89

910
## [2.3.2] - 2023-04-18
1011

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ kotlin {
8484
if (HostManager.hostIsMingw) {
8585
mingwX64()
8686
}
87-
if (HostManager.hostIsLinux) {
87+
if (HostManager.hostIsLinux || HostManager.hostIsMac) {
8888
linuxX64()
8989
}
9090
androidNativeArm32()

0 commit comments

Comments
 (0)