[K/N] Remove unused targetsWithoutZlib

This commit is contained in:
Alexander Shabalin
2024-03-04 23:12:13 +01:00
committed by Space Team
parent 5a9eea8c45
commit aead2c2bff
2 changed files with 0 additions and 16 deletions
@@ -25,15 +25,10 @@ plugins {
id("konan")
}
val targetsWithoutZlib: List<KonanTarget> by project
// region: Util functions.
fun KonanTarget.defFiles() =
project.fileTree("src/platform/${family.visibleName}")
.filter { it.name.endsWith(".def") }
// The libz.a/libz.so and zlib.h are missing in MIPS sysroots.
// Just workaround it until we have sysroots corrected.
.filterNot { (this in targetsWithoutZlib) && it.name == "zlib.def" }
.map { DefFile(it, this) }