This commit is contained in:
Michael G 2026-02-01 22:44:00 -06:00 committed by GitHub
commit f7c704da59
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 0 deletions

View File

@ -1 +0,0 @@
pencrypt.1

1
doc/man/pdecrypt.1 Normal file
View File

@ -0,0 +1 @@
pencrypt.1

View File

@ -1 +0,0 @@
pzip.1

1
doc/man/punzip.1 Normal file
View File

@ -0,0 +1 @@
pzip.1

View File

@ -2527,6 +2527,13 @@ def WriteConfigSettings():
# If we don't have mimalloc, use DeletedBufferChain as fallback,
# which is still more efficient than malloc.
dtool_config["USE_DELETED_CHAIN"] = '1'
# this will resolve a crash on apple silicon systems
elif GetTarget() == 'darwin':
# check for system architecture arm64
if os.uname().machine == 'arm64':
dtool_config["USE_DELETED_CHAIN"] = '1'
else:
dtool_config["USE_DELETED_CHAIN"] = 'UNDEF'
else:
# On other systems, the default malloc seems to be fine.
dtool_config["USE_DELETED_CHAIN"] = 'UNDEF'