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.
1 parent 1ba55a2 commit ca892e3Copy full SHA for ca892e3
CMakeLists.txt
@@ -538,9 +538,10 @@ if(WITH_CATCH2)
538
message("-- Enabled Catch2 support")
539
endif()
540
541
-# enable breakpad unless win32
+# enable breakpad unless win32 or power
542
+# ppc64le port tracked in https://issues.chromium.org/issues/41479970
543
CMAKE_DEPENDENT_OPTION(WITH_BREAKPAD "Build with Google Breakpad crash reporter" OFF
- "WIN32" ON)
544
+ "WIN32 OR CMAKE_SYSTEM_PROCESSOR MATCHES ppc64le" ON)
545
if(WITH_BREAKPAD)
546
set(HAVE_BREAKPAD ON)
547
message("-- Enabled Google Breakpad crash reporter")
0 commit comments