mirror of
https://github.com/andersrh/copr-andersrh.git
synced 2026-05-17 13:58:01 +00:00
12 lines
467 B
Diff
12 lines
467 B
Diff
--- a/base/process/launch.h
|
|
+++ b/base/process/launch.h
|
|
@@ -54,6 +54,9 @@
|
|
#if defined(ARCH_CPU_ARM64)
|
|
#define PTHREAD_STACK_MIN_CONST \
|
|
(__builtin_constant_p(PTHREAD_STACK_MIN) ? PTHREAD_STACK_MIN : 131072)
|
|
+#elif defined(ARCH_CPU_PPC64)
|
|
+#define PTHREAD_STACK_MIN_CONST \
|
|
+ (__builtin_constant_p(PTHREAD_STACK_MIN) ? PTHREAD_STACK_MIN : 131072)
|
|
#else
|
|
#define PTHREAD_STACK_MIN_CONST \
|
|
(__builtin_constant_p(PTHREAD_STACK_MIN) ? PTHREAD_STACK_MIN : 16384)
|