]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Do not build the macOS installer with mimalloc enabled (#112312)
authorNed Deily <nad@python.org>
Wed, 22 Nov 2023 08:29:28 +0000 (03:29 -0500)
committerGitHub <noreply@github.com>
Wed, 22 Nov 2023 08:29:28 +0000 (03:29 -0500)
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

index 84e1422a628361491debbf9cd795313bbfb02e6d..b35789a7e3132befe53041dcdb41cf7e5070b5d7 100755 (executable)
@@ -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 "