From 80f596984e3a941353a7d179efdf86ff0181d412 Mon Sep 17 00:00:00 2001 From: Michael Wright Date: Fri, 20 Jun 2014 16:19:58 -0700 Subject: Print ABI in backtraces. This lets the stack tool figure out which toolchain to use automatically. Change-Id: Ia235d6904622423fe6fbc7b0315a1861e52a41ad --- debuggerd/tombstone.cpp | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'debuggerd/tombstone.cpp') diff --git a/debuggerd/tombstone.cpp b/debuggerd/tombstone.cpp index 7482886..a58d9e5 100755 --- a/debuggerd/tombstone.cpp +++ b/debuggerd/tombstone.cpp @@ -58,21 +58,6 @@ // Must match the path defined in NativeCrashListener.java #define NCRASH_SOCKET_PATH "/data/system/ndebugsocket" -// Figure out the abi based on defined macros. -#if defined(__arm__) -#define ABI_STRING "arm" -#elif defined(__aarch64__) -#define ABI_STRING "arm64" -#elif defined(__mips__) -#define ABI_STRING "mips" -#elif defined(__i386__) -#define ABI_STRING "x86" -#elif defined(__x86_64__) -#define ABI_STRING "x86_64" -#else -#error "Unsupported ABI" -#endif - static bool signal_has_si_addr(int sig) { switch (sig) { case SIGBUS: -- cgit v1.1