Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0d31d487 authored by Elliott Hughes's avatar Elliott Hughes Committed by Android Git Automerger
Browse files

am d3b61d18: Merge "Clean up the debuggerd makefile."

* commit 'd3b61d18':
  Clean up the debuggerd makefile.
parents b85c2494 d3b61d18
Loading
Loading
Loading
Loading
+15 −16
Original line number Diff line number Diff line
@@ -15,12 +15,11 @@ LOCAL_SRC_FILES_mips := mips/machine.cpp
LOCAL_SRC_FILES_x86    := x86/machine.cpp
LOCAL_SRC_FILES_x86_64 := x86_64/machine.cpp

LOCAL_CONLYFLAGS := -std=gnu99
LOCAL_CPPFLAGS := -std=gnu++11
LOCAL_CFLAGS := \
	-Wall \
	-Wno-array-bounds \
	-Werror
LOCAL_CPPFLAGS := \
    -std=gnu++11 \
    -W -Wall -Wextra \
    -Wunused \
    -Werror \

ifeq ($(ARCH_ARM_HAVE_VFP),true)
LOCAL_CFLAGS_arm += -DWITH_VFP
@@ -31,7 +30,6 @@ endif # ARCH_ARM_HAVE_VFP_D32

LOCAL_SHARED_LIBRARIES := \
    libbacktrace \
	libc \
    libcutils \
    liblog \
    libselinux \
@@ -42,6 +40,7 @@ LOCAL_MODULE := debuggerd
LOCAL_MODULE_STEM_32 := debuggerd
LOCAL_MODULE_STEM_64 := debuggerd64
LOCAL_MULTILIB := both
LOCAL_ADDITIONAL_DEPENDENCIES += $(LOCAL_PATH)/Android.mk

include $(BUILD_EXECUTABLE)