[K/N] Exclude libbacktrace for Linux-MIPS targets
See #KT-48949
This commit is contained in:
+4
-1
@@ -29,7 +29,10 @@ fun KonanTarget.supportsMimallocAllocator(): Boolean =
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun KonanTarget.supportsLibBacktrace(): Boolean =
|
fun KonanTarget.supportsLibBacktrace(): Boolean =
|
||||||
this.family.isAppleFamily || this.family == Family.LINUX || this.family == Family.ANDROID
|
this.family.isAppleFamily ||
|
||||||
|
// MIPS architectures have issues, see KT-48949
|
||||||
|
(this.family == Family.LINUX && this.architecture !in listOf(Architecture.MIPS32, Architecture.MIPSEL32)) ||
|
||||||
|
this.family == Family.ANDROID
|
||||||
|
|
||||||
fun KonanTarget.supportsCoreSymbolication(): Boolean =
|
fun KonanTarget.supportsCoreSymbolication(): Boolean =
|
||||||
this in listOf(
|
this in listOf(
|
||||||
|
|||||||
Reference in New Issue
Block a user