From f4cea7ff0b3170a7383f4880ef33e1048d059352 Mon Sep 17 00:00:00 2001 From: "A. Wilcox" Date: Mon, 21 Feb 2022 01:13:36 -0600 Subject: system/python3: Make stack size platform-agnostic --- system/python3/APKBUILD | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/system/python3/APKBUILD b/system/python3/APKBUILD index e09001beb..ba29bea30 100644 --- a/system/python3/APKBUILD +++ b/system/python3/APKBUILD @@ -94,12 +94,9 @@ build() { --with-system-ffi \ --with-threads - # set thread stack size to 1MB so we don't segfault before we hit + # set thread stack size to 2MB so we don't segfault before we hit # sys.getrecursionlimit() - stacksize=0x100000; - case "$CARCH" in - ppc64) stacksize=0x200000;; - esac + stacksize=0x200000; make EXTRA_CFLAGS="$CFLAGS -DTHREAD_STACK_SIZE=$stacksize" } -- cgit v1.2.3-60-g2f50