// SPDX-FileCopyrightText: Provenant contributors
// SPDX-License-Identifier: Apache-2.0
// musl's default allocator serializes badly under the scanner's highly parallel
// allocation, making static musl builds orders of magnitude slower. mimalloc restores
// glibc-class throughput. Only the musl release binaries are affected; glibc, macOS, and
// Windows builds keep the system allocator.
static GLOBAL: MiMalloc = MiMalloc;