[Gradle][Native] K2NativeCompilerArguments.refinesPaths: Use Array<String> instead of String
^KT-55071 Verification Pending
This commit is contained in:
committed by
Space Team
parent
5818187e57
commit
7870c82221
+1
-1
@@ -67,7 +67,7 @@ internal fun buildKotlinNativeKlibCompilerArgs(
|
||||
if (sharedCompilationData != null) {
|
||||
val refinesPaths = sharedCompilationData.refinesPaths.files
|
||||
if (refinesPaths.isNotEmpty()) {
|
||||
addArg("-Xrefines-paths", refinesPaths.joinToString(File.pathSeparator) { it.absolutePath })
|
||||
addArg("-Xrefines-paths", refinesPaths.joinToString(separator = ",") { it.absolutePath })
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user