diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2022-04-25 01:01:43 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2022-04-25 01:01:43 -0500 |
commit | 7eb237064c8f9926942fd7dbbfe8a6a90c11fa5d (patch) | |
tree | 9dce4ac141e8403e6dc3a7c238f0a65059726ecd /system/python3/APKBUILD | |
parent | a4c18aba52ff3bb68f7808ada239050758db8d6c (diff) | |
download | packages-7eb237064c8f9926942fd7dbbfe8a6a90c11fa5d.tar.gz packages-7eb237064c8f9926942fd7dbbfe8a6a90c11fa5d.tar.bz2 packages-7eb237064c8f9926942fd7dbbfe8a6a90c11fa5d.tar.xz packages-7eb237064c8f9926942fd7dbbfe8a6a90c11fa5d.zip |
system/python3: Revert back to 1 MB thread stacks
I cannot reproduce the failure on 3.10.2 or later. This may have been a
bug in earlier 3.10 versions. Willing to re-investigate if anyone runs
in to this at a later date.
Diffstat (limited to 'system/python3/APKBUILD')
-rw-r--r-- | system/python3/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/python3/APKBUILD b/system/python3/APKBUILD index ba29bea30..7c80d89a7 100644 --- a/system/python3/APKBUILD +++ b/system/python3/APKBUILD @@ -94,9 +94,9 @@ build() { --with-system-ffi \ --with-threads - # set thread stack size to 2MB so we don't segfault before we hit + # set thread stack size to 1MB so we don't segfault before we hit # sys.getrecursionlimit() - stacksize=0x200000; + stacksize=0x100000; make EXTRA_CFLAGS="$CFLAGS -DTHREAD_STACK_SIZE=$stacksize" } |