Skip to content

Commit ca892e3

Browse files
committed
cmake: disable WITH_BREAKPAD on power arch
Reported-by: T K Chandra Hasan <[email protected]> Signed-off-by: Casey Bodley <[email protected]>
1 parent 1ba55a2 commit ca892e3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -538,9 +538,10 @@ if(WITH_CATCH2)
538538
message("-- Enabled Catch2 support")
539539
endif()
540540

541-
# enable breakpad unless win32
541+
# enable breakpad unless win32 or power
542+
# ppc64le port tracked in https://issues.chromium.org/issues/41479970
542543
CMAKE_DEPENDENT_OPTION(WITH_BREAKPAD "Build with Google Breakpad crash reporter" OFF
543-
"WIN32" ON)
544+
"WIN32 OR CMAKE_SYSTEM_PROCESSOR MATCHES ppc64le" ON)
544545
if(WITH_BREAKPAD)
545546
set(HAVE_BREAKPAD ON)
546547
message("-- Enabled Google Breakpad crash reporter")

0 commit comments

Comments
 (0)