From ca892e3a4cf4a323016c1a862f74473f3cc102b4 Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Fri, 7 Nov 2025 09:22:01 -0500 Subject: [PATCH] cmake: disable WITH_BREAKPAD on power arch Reported-by: T K Chandra Hasan Signed-off-by: Casey Bodley --- CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 58457e0ee42..42b8c383f57 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -538,9 +538,10 @@ if(WITH_CATCH2) message("-- Enabled Catch2 support") endif() -# enable breakpad unless win32 +# enable breakpad unless win32 or power +# ppc64le port tracked in https://issues.chromium.org/issues/41479970 CMAKE_DEPENDENT_OPTION(WITH_BREAKPAD "Build with Google Breakpad crash reporter" OFF - "WIN32" ON) + "WIN32 OR CMAKE_SYSTEM_PROCESSOR MATCHES ppc64le" ON) if(WITH_BREAKPAD) set(HAVE_BREAKPAD ON) message("-- Enabled Google Breakpad crash reporter") -- 2.47.3