summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2023-11-22 08:29:28 (GMT)
committerGitHub <noreply@github.com>2023-11-22 08:29:28 (GMT)
commitad0e2a9332626dac4588f18626a20c48f4a58a9c (patch)
tree7ba526252610c07c32eb14412c0fd8c7027c245a
parentfde8fe50e495b66c397c6ce147ca3af2e7d9b289 (diff)
downloadcpython-ad0e2a9332626dac4588f18626a20c48f4a58a9c.zip
cpython-ad0e2a9332626dac4588f18626a20c48f4a58a9c.tar.gz
cpython-ad0e2a9332626dac4588f18626a20c48f4a58a9c.tar.bz2
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.
-rwxr-xr-xMac/BuildScript/build-installer.py2
1 files changed, 2 insertions, 0 deletions
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 "