From a922d5a15575891b4a0f13885f45a9229eca6771 Mon Sep 17 00:00:00 2001 From: Victor Kaiser-Pendergrast Date: Wed, 18 Feb 2015 10:55:45 -0500 Subject: [PATCH] Update doedexerant makefile Fixes "CANNOT LINK EXECUTABLE: empty/missing DT_HASH in "./deodexerant" (build with --hash-style=gnu?)" error --- deodexerant/Android.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deodexerant/Android.mk b/deodexerant/Android.mk index c1921f9b..46a9dba8 100644 --- a/deodexerant/Android.mk +++ b/deodexerant/Android.mk @@ -39,4 +39,6 @@ LOCAL_SHARED_LIBRARIES := libdl LOCAL_MODULE_TAGS := optional -include $(BUILD_EXECUTABLE) \ No newline at end of file +LOCAL_LDFLAGS := -Wl,--hash-style=sysv + +include $(BUILD_EXECUTABLE)