From ad0e2a9332626dac4588f18626a20c48f4a58a9c Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Wed, 22 Nov 2023 03:29:28 -0500 Subject: Do not build the macOS installer with mimalloc enabled (#112312) Do not build the macOS installer with mimalloc enabled pending resolution of weak linking crashes during interpreter startup on macOS 10.9, 10.10, and 10.11 when built on macOS 11 and later. --- Mac/BuildScript/build-installer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 84e1422..b35789a7 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -1147,7 +1147,9 @@ def buildPython(): # will find them during its extension import sanity checks. print("Running configure...") + print(" NOTE: --with-mimalloc=no pending resolution of weak linking issues") runCommand("%s -C --enable-framework --enable-universalsdk=/ " + "--with-mimalloc=no " "--with-universal-archs=%s " "%s " "%s " -- cgit v0.12