Skip to content

Commit 36b9740

Browse files
committed
fix: add hostIsLinux guard
1 parent 0d6f17b commit 36b9740

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ kotlin {
9494
mingwX86()
9595
mingwX64()
9696
}
97-
linuxX64()
97+
if (HostManager.hostIsLinux) {
98+
linuxX64()
99+
}
98100
androidNativeArm32()
99101
androidNativeArm64()
100102
}

0 commit comments

Comments
 (0)