Merge baf2a16b8c into 0661574448
This commit is contained in:
commit
f7c704da59
|
|
@ -1 +0,0 @@
|
|||
pencrypt.1
|
||||
|
|
@ -0,0 +1 @@
|
|||
pencrypt.1
|
||||
|
|
@ -1 +0,0 @@
|
|||
pzip.1
|
||||
|
|
@ -0,0 +1 @@
|
|||
pzip.1
|
||||
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Reference in New Issue