We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 35a9024 + ca892e3 commit 8b98481Copy full SHA for 8b98481
CMakeLists.txt
@@ -538,13 +538,10 @@ if(WITH_CATCH2)
538
message("-- Enabled Catch2 support")
539
endif()
540
541
-if(WIN32)
542
- set(WITH_BREAKPAD_DEFAULT OFF)
543
-else()
544
- set(WITH_BREAKPAD_DEFAULT ON)
545
-endif()
546
-
547
-option(WITH_BREAKPAD "Build with Google Breakpad crash reporter" ${WITH_BREAKPAD_DEFAULT})
+# 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 OR CMAKE_SYSTEM_PROCESSOR MATCHES ppc64le" ON)
548
if(WITH_BREAKPAD)
549
set(HAVE_BREAKPAD ON)
550
message("-- Enabled Google Breakpad crash reporter")
0 commit comments