summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTianyu Gu <macdavid313@gmail.com>2020-11-25 18:44:34 +1100
committerTianyu Gu <macdavid313@gmail.com>2020-11-25 18:44:34 +1100
commit39b183551d340fada8e4c9a25ad5c0adf2f0b171 (patch)
tree1f49e8c233838bbb10373f2537f8625b6185d952
parent6ef459b4407768a40691124e1e9fe516ccabd895 (diff)
use system's allocator
-rw-r--r--pyoxidizer.template.bzl4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyoxidizer.template.bzl b/pyoxidizer.template.bzl
index aebf072..349ba3e 100644
--- a/pyoxidizer.template.bzl
+++ b/pyoxidizer.template.bzl
@@ -129,10 +129,10 @@ def make_exe(dist):
python_config.module_search_paths = ["$ORIGIN/lib"]
# Use jemalloc as Python's memory allocator
- python_config.raw_allocator = "jemalloc"
+ # python_config.raw_allocator = "jemalloc"
# Use the system allocator as Python's memory allocator.
- # python_config.raw_allocator = "system"
+ python_config.raw_allocator = "system"
# Control whether `oxidized_importer` is the first importer on
# `sys.meta_path`.