am 434edbe6: Merge "LP64 should have debuggerd and debuggerd64."

* commit '434edbe6fffb9445316567ac6de3f407c005b37b':
  LP64 should have debuggerd and debuggerd64.
This commit is contained in:
Elliott Hughes 2014-02-01 01:33:51 +00:00 committed by Android Git Automerger
commit da9b5dab2d
2 changed files with 9 additions and 1 deletions

View file

@ -19,7 +19,11 @@ LOCAL_CFLAGS := \
-Werror \ -Werror \
-Wno-unused-parameter \ -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) ifeq ($(ARCH_ARM_HAVE_VFP),true)
LOCAL_CFLAGS += -DWITH_VFP LOCAL_CFLAGS += -DWITH_VFP

View file

@ -23,7 +23,11 @@
extern "C" { extern "C" {
#endif #endif
#if __LP64__
#define DEBUGGER_SOCKET_NAME "android:debuggerd64"
#else
#define DEBUGGER_SOCKET_NAME "android:debuggerd" #define DEBUGGER_SOCKET_NAME "android:debuggerd"
#endif
typedef enum { typedef enum {
// dump a crash // dump a crash