From cb8504c967465e313f6cff15de4ae74fbb61a46f Mon Sep 17 00:00:00 2001 From: Jered Floyd Date: Sat, 21 Jan 2023 03:24:47 +0000 Subject: [PATCH] ppc64 stack grows down --- iocore/eventsystem/UnixEventProcessor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iocore/eventsystem/UnixEventProcessor.cc b/iocore/eventsystem/UnixEventProcessor.cc index 50b224082a7..200ef71d347 100644 --- a/iocore/eventsystem/UnixEventProcessor.cc +++ b/iocore/eventsystem/UnixEventProcessor.cc @@ -161,7 +161,7 @@ void ThreadAffinityInitializer::setup_stack_guard(void *stack, int stackguard_pages) { #if !(defined(__i386__) || defined(__x86_64__) || defined(__arm__) || defined(__arm64__) || defined(__aarch64__) || \ - defined(__mips__)) + defined(__mips__) || defined(__powerpc64__)) #error Unknown stack growth direction. Determine the stack growth direction of your platform. // If your stack grows upwards, you need to change this function and the calculation of stack_begin in do_alloc_stack. #endif