Skip to content

Commit

Permalink
fix(build): allow building Linux targets on Mac host
Browse files Browse the repository at this point in the history
  • Loading branch information
msfjarvis committed Jun 29, 2023
1 parent f2c0809 commit 7d61530
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
## [Unreleased]

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

## [2.3.2] - 2023-04-18

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ kotlin {
if (HostManager.hostIsMingw) {
mingwX64()
}
if (HostManager.hostIsLinux) {
if (HostManager.hostIsLinux || HostManager.hostIsMac) {
linuxX64()
}
androidNativeArm32()
Expand Down

0 comments on commit 7d61530

Please sign in to comment.