* commit 'da9b5dab2d565f9682fe1fb3555702bf82334ab4': LP64 should have debuggerd and debuggerd64.
This commit is contained in:
commit
5cbb68cf89
2 changed files with 9 additions and 1 deletions
|
@ -19,7 +19,11 @@ LOCAL_CFLAGS := \
|
|||
-Werror \
|
||||
-Wno-unused-parameter \
|
||||
|
||||
LOCAL_MODULE := debuggerd
|
||||
ifeq ($(TARGET_IS_64_BIT),true)
|
||||
LOCAL_MODULE := debuggerd64
|
||||
else
|
||||
LOCAL_MODULE := debuggerd
|
||||
endif
|
||||
|
||||
ifeq ($(ARCH_ARM_HAVE_VFP),true)
|
||||
LOCAL_CFLAGS += -DWITH_VFP
|
||||
|
|
|
@ -23,7 +23,11 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
#if __LP64__
|
||||
#define DEBUGGER_SOCKET_NAME "android:debuggerd64"
|
||||
#else
|
||||
#define DEBUGGER_SOCKET_NAME "android:debuggerd"
|
||||
#endif
|
||||
|
||||
typedef enum {
|
||||
// dump a crash
|
||||
|
|
Loading…
Reference in a new issue