* commit '0dccb02b9fd714af1db91e4ba3ca0b0da4e563c1': build app_process64 on 64-bit targets
This commit is contained in:
@@ -1,4 +1,6 @@
|
|||||||
LOCAL_PATH:= $(call my-dir)
|
LOCAL_PATH:= $(call my-dir)
|
||||||
|
|
||||||
|
# 32-bit app_process
|
||||||
include $(CLEAR_VARS)
|
include $(CLEAR_VARS)
|
||||||
|
|
||||||
LOCAL_SRC_FILES:= \
|
LOCAL_SRC_FILES:= \
|
||||||
@@ -12,9 +14,29 @@ LOCAL_SHARED_LIBRARIES := \
|
|||||||
libandroid_runtime
|
libandroid_runtime
|
||||||
|
|
||||||
LOCAL_MODULE:= app_process
|
LOCAL_MODULE:= app_process
|
||||||
|
LOCAL_32_BIT_ONLY := true
|
||||||
include $(BUILD_EXECUTABLE)
|
include $(BUILD_EXECUTABLE)
|
||||||
|
|
||||||
|
ifeq ($(TARGET_IS_64_BIT),true)
|
||||||
|
|
||||||
|
# 64-bit app_process64
|
||||||
|
include $(CLEAR_VARS)
|
||||||
|
|
||||||
|
LOCAL_SRC_FILES:= \
|
||||||
|
app_main.cpp
|
||||||
|
|
||||||
|
LOCAL_SHARED_LIBRARIES := \
|
||||||
|
libcutils \
|
||||||
|
libutils \
|
||||||
|
liblog \
|
||||||
|
libbinder \
|
||||||
|
libandroid_runtime
|
||||||
|
|
||||||
|
LOCAL_MODULE:= app_process64
|
||||||
|
LOCAL_NO_2ND_ARCH := true
|
||||||
|
include $(BUILD_EXECUTABLE)
|
||||||
|
|
||||||
|
endif # TARGET_IS_64_BIT
|
||||||
|
|
||||||
# Build a variant of app_process binary linked with ASan runtime.
|
# Build a variant of app_process binary linked with ASan runtime.
|
||||||
# ARM-only at the moment.
|
# ARM-only at the moment.
|
||||||
|
|||||||
Reference in New Issue
Block a user