Upload mapping and native debug symbols

This commit is contained in:
vvb2060
2022-09-14 22:59:12 +08:00
committed by John Wu
parent b505819ca2
commit 9279f30e89
4 changed files with 17 additions and 5 deletions

View File

@@ -58,11 +58,13 @@ ifdef B_PRELOAD
include $(CLEAR_VARS)
LOCAL_MODULE := init-ld
LOCAL_SRC_FILES := init/preload.c
LOCAL_STRIP_MODE := --strip-all
include $(BUILD_SHARED_LIBRARY)
include $(CLEAR_VARS)
LOCAL_MODULE := zygisk-ld
LOCAL_SRC_FILES := zygisk/loader.c
LOCAL_STRIP_MODE := --strip-all
include $(BUILD_SHARED_LIBRARY)
endif

View File

@@ -6,7 +6,7 @@ APP_CPPFLAGS := -std=c++20
APP_STL := none
APP_PLATFORM := android-23
APP_THIN_ARCHIVE := true
APP_STRIP_MODE := --strip-all
APP_STRIP_MODE := none
# Busybox should use stock libc.a
ifdef B_BB