Build: Fix input declaration for :kotlin-stdlib-js-ir:fullRuntimeSources
Input order was random because of unordered set
This commit is contained in:
@@ -42,7 +42,7 @@ dependencies {
|
|||||||
}
|
}
|
||||||
|
|
||||||
val unimplementedNativeBuiltIns =
|
val unimplementedNativeBuiltIns =
|
||||||
(file("$rootDir/core/builtins/native/kotlin/").list().toSet() - file("$rootDir/libraries/stdlib/js-ir/builtins/").list())
|
(file("$rootDir/core/builtins/native/kotlin/").list().toSortedSet() - file("$rootDir/libraries/stdlib/js-ir/builtins/").list())
|
||||||
.map { "core/builtins/native/kotlin/$it" }
|
.map { "core/builtins/native/kotlin/$it" }
|
||||||
|
|
||||||
// Required to compile native builtins with the rest of runtime
|
// Required to compile native builtins with the rest of runtime
|
||||||
|
|||||||
Reference in New Issue
Block a user