]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
cmake: disable WITH_BREAKPAD on power arch
authorCasey Bodley <cbodley@redhat.com>
Fri, 7 Nov 2025 14:22:01 +0000 (09:22 -0500)
committerCasey Bodley <cbodley@redhat.com>
Tue, 25 Nov 2025 14:55:35 +0000 (09:55 -0500)
Reported-by: T K Chandra Hasan <t.k.chandra.hasan@ibm.com>
Signed-off-by: Casey Bodley <cbodley@redhat.com>
CMakeLists.txt

index 58457e0ee429a4deccae8ccdf046e3d9d6cc03cc..42b8c383f57a321278b52c4c4d92a134dbd38170 100644 (file)
@@ -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")