diff options
| author | Ned Deily <nad@python.org> | 2023-11-22 08:29:28 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-22 08:29:28 (GMT) |
| commit | ad0e2a9332626dac4588f18626a20c48f4a58a9c (patch) | |
| tree | 7ba526252610c07c32eb14412c0fd8c7027c245a | |
| parent | fde8fe50e495b66c397c6ce147ca3af2e7d9b289 (diff) | |
| download | cpython-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-x | Mac/BuildScript/build-installer.py | 2 |
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 " |
