Skip to content

Commit 9d778a6

Browse files
committed
Update windows error suppression flags
1 parent bf4a014 commit 9d778a6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

library/driver/build.gradle.kts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ kmpConfiguration {
135135
val kt = KonanTarget.predefinedTargets[target]!!
136136

137137
// Add as dependency so any kotlin native tooling is downloaded
138-
// before the CompileToBitcode gets executed.
138+
// before the CompileToBitcode task is executed.
139139
cinteropTaskInfo.forEach { (taskName, target) ->
140140
if (target != kt) return@forEach
141141
this.dependsOn(taskName)
@@ -177,7 +177,11 @@ kmpConfiguration {
177177
"-Wno-unused-variable",
178178
)
179179
ANDROID -> listOf()
180-
MINGW -> listOf()
180+
MINGW -> listOf(
181+
"-Wno-sign-compare",
182+
"-Wno-unused-parameter",
183+
"-Wno-unused-variable",
184+
)
181185
}.let { compilerArgs.addAll(it) }
182186

183187
// SQLITE flags

0 commit comments

Comments
 (0)