Skip to content

Commit

Permalink
build(all): disable some native targets
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitjes committed Sep 3, 2023
1 parent 3d3bab3 commit 9f4eef1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions buildSrc/src/main/kotlin/plugin.common.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,10 @@ tasks {
&& konanTarget.architecture == HostManager.host.architecture
}
}

withType<KotlinNativeCompile> {
onlyIf {
this.target !in listOf("linux_arm64", "mingw_x64")
}
}
}

0 comments on commit 9f4eef1

Please sign in to comment.