Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1885)

Unified Diff: base/debug/stack_trace_android.cc

Issue 14241008: [MIPS] Support to build libchromeview for MIPS-Android (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: base/debug/stack_trace_android.cc
diff --git a/base/debug/stack_trace_android.cc b/base/debug/stack_trace_android.cc
index cc03d60ba97f3d8fe7e6dd121391592bdb37d44a..d71d246da63b68d5c74e910b55590e5ff1217fcb 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
cjhopman 2013/04/19 18:02:10 Can we just use SIGSEGV for all arches?
petarj 2013/04/21 01:17:14 I guess we could. Would you like me to change it i
+#endif
+
namespace base {
namespace debug {

Powered by Google App Engine
This is Rietveld 408576698