1 config BR2_PACKAGE_GOOGLE_BREAKPAD_ARCH_SUPPORTS
3 default y if BR2_i386 || BR2_x86_64 || BR2_arm || BR2_aarch64 || \
6 config BR2_PACKAGE_GOOGLE_BREAKPAD
8 depends on BR2_INSTALL_LIBSTDCPP
9 depends on BR2_USE_WCHAR
10 depends on BR2_TOOLCHAIN_HAS_THREADS
11 depends on (BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_UCLIBC)
12 depends on BR2_PACKAGE_GOOGLE_BREAKPAD_ARCH_SUPPORTS
14 Google-Breakpad is a library and tool suite that allows you
15 to distribute an application to users with compiler-provided
16 debugging information removed, record crashes in compact
17 "minidump" files, send them back to your server, and produce
18 C and C++ stack traces from these minidumps. Breakpad can
19 also write minidumps on request for programs that have not
22 You may want to set BR2_ENABLE_DEBUG, in order to get useful
25 This target package installs a static library named
26 libbreakpad_client.a which should be linked into programs
27 willing to use Google Breakpad. A host variant of this
28 package is also available, and provides the different tools
29 needed to extract the debugging symbols from target
32 http://code.google.com/p/google-breakpad/
34 comment "google-breakpad requires a glibc or uClibc toolchain w/ wchar, thread, C++ enabled"
35 depends on BR2_PACKAGE_GOOGLE_BREAKPAD_ARCH_SUPPORTS
36 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
37 !BR2_TOOLCHAIN_HAS_THREADS || \
38 !(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_UCLIBC)