6cc4923087
Change-Id: I0c0d9c2d7e476b8d117aaf505a9480a47c0b5c05 Signed-off-by: Lei Li <lei.l.li@intel.com> Signed-off-by: Bruce Beare <bruce.j.beare@intel.com>
53 lines
1.4 KiB
Makefile
53 lines
1.4 KiB
Makefile
# Copyright 2005 The Android Open Source Project
|
|
|
|
ifneq ($(filter arm x86,$(TARGET_ARCH)),)
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= debuggerd.c utility.c getevent.c $(TARGET_ARCH)/machine.c $(TARGET_ARCH)/unwind.c symbol_table.c
|
|
ifeq ($(TARGET_ARCH),arm)
|
|
LOCAL_SRC_FILES += $(TARGET_ARCH)/pr-support.c
|
|
endif
|
|
|
|
LOCAL_CFLAGS := -Wall
|
|
LOCAL_MODULE := debuggerd
|
|
|
|
ifeq ($(ARCH_ARM_HAVE_VFP),true)
|
|
LOCAL_CFLAGS += -DWITH_VFP
|
|
endif # ARCH_ARM_HAVE_VFP
|
|
ifeq ($(ARCH_ARM_HAVE_VFP_D32),true)
|
|
LOCAL_CFLAGS += -DWITH_VFP_D32
|
|
endif # ARCH_ARM_HAVE_VFP_D32
|
|
|
|
LOCAL_STATIC_LIBRARIES := libcutils libc
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := crasher.c
|
|
LOCAL_SRC_FILES += $(TARGET_ARCH)/crashglue.S
|
|
LOCAL_MODULE := crasher
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
|
|
LOCAL_MODULE_TAGS := eng
|
|
#LOCAL_FORCE_STATIC_EXECUTABLE := true
|
|
LOCAL_SHARED_LIBRARIES := libcutils libc
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
ifeq ($(ARCH_ARM_HAVE_VFP),true)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_CFLAGS += -DWITH_VFP
|
|
ifeq ($(ARCH_ARM_HAVE_VFP_D32),true)
|
|
LOCAL_CFLAGS += -DWITH_VFP_D32
|
|
endif # ARCH_ARM_HAVE_VFP_D32
|
|
|
|
LOCAL_SRC_FILES := vfp-crasher.c vfp.S
|
|
LOCAL_MODULE := vfp-crasher
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
|
|
LOCAL_MODULE_TAGS := eng
|
|
LOCAL_SHARED_LIBRARIES := libcutils libc
|
|
include $(BUILD_EXECUTABLE)
|
|
endif # ARCH_ARM_HAVE_VFP == true
|
|
|
|
endif # arm or x86 in TARGET_ARCH
|