We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf4a014 commit 9d778a6Copy full SHA for 9d778a6
library/driver/build.gradle.kts
@@ -135,7 +135,7 @@ kmpConfiguration {
135
val kt = KonanTarget.predefinedTargets[target]!!
136
137
// Add as dependency so any kotlin native tooling is downloaded
138
- // before the CompileToBitcode gets executed.
+ // before the CompileToBitcode task is executed.
139
cinteropTaskInfo.forEach { (taskName, target) ->
140
if (target != kt) return@forEach
141
this.dependsOn(taskName)
@@ -177,7 +177,11 @@ kmpConfiguration {
177
"-Wno-unused-variable",
178
)
179
ANDROID -> listOf()
180
- MINGW -> listOf()
+ MINGW -> listOf(
181
+ "-Wno-sign-compare",
182
+ "-Wno-unused-parameter",
183
+ "-Wno-unused-variable",
184
+ )
185
}.let { compilerArgs.addAll(it) }
186
187
// SQLITE flags
0 commit comments