diff options
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" } |