Native: enable mimalloc by default on ios_simulator_arm64

This was probably forgotten when supporting Apple silicon.
This commit is contained in:
Svyatoslav Scherbina
2022-08-31 16:47:14 +02:00
committed by Space
parent f71931d04b
commit 3f9da7263a
@@ -56,6 +56,7 @@ fun KonanTarget.supportsMimallocAllocator(): Boolean =
is KonanTarget.IOS_ARM32 -> true
is KonanTarget.IOS_ARM64 -> true
is KonanTarget.IOS_X64 -> true
is KonanTarget.IOS_SIMULATOR_ARM64 -> true
else -> false // watchOS/tvOS/android_x86/android_arm32 aren't tested; linux_mips32/linux_mipsel32 need linking with libatomic.
}