diff options
Diffstat (limited to 'base/debug/stack_trace_android.cc')
-rw-r--r-- | base/debug/stack_trace_android.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/base/debug/stack_trace_android.cc b/base/debug/stack_trace_android.cc index cc03d60..d71d246 100644 --- a/base/debug/stack_trace_android.cc +++ b/base/debug/stack_trace_android.cc @@ -10,6 +10,11 @@ #include "base/logging.h" +#ifdef __MIPSEL__ +// SIGSTKFLT is not defined for MIPS. +#define SIGSTKFLT SIGSEGV +#endif + namespace base { namespace debug { |