[bootable/recovery] rkupdate compatible with 64 bit
This commit is contained in:
@ -57,7 +57,7 @@ LOCAL_CFLAGS += -D_FILE_OFFSET_BITS=64
|
||||
|
||||
LOCAL_C_INCLUDES := \
|
||||
$(prebuilt_stdcxx_PATH)/gnu-libstdc++/include\
|
||||
$(prebuilt_stdcxx_PATH)/gnu-libstdc++/libs/$(TARGET_CPU_ABI)/include\
|
||||
$(prebuilt_stdcxx_PATH)/gnu-libstdc++/libs/armeabi-v7a/include\
|
||||
bionic \
|
||||
bionic/libstdc++/include \
|
||||
$(LOCAL_PATH)/rkupdate
|
||||
|
||||
@ -1,6 +1,10 @@
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_PREBUILT_LIBS :=librkrsa.a
|
||||
|
||||
ifeq ($(TARGET_ARCH), arm64)
|
||||
LOCAL_PREBUILT_LIBS := lib64/librkrsa.a
|
||||
else ifeq ($(TARGET_ARCH), arm)
|
||||
LOCAL_PREBUILT_LIBS := lib/librkrsa.a
|
||||
endif
|
||||
|
||||
include $(BUILD_MULTI_PREBUILT)
|
||||
|
||||
BIN
bootable/recovery/rkupdate/rsa/lib64/librkrsa.a
Executable file
BIN
bootable/recovery/rkupdate/rsa/lib64/librkrsa.a
Executable file
Binary file not shown.
@ -1,6 +1,10 @@
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_PREBUILT_LIBS := libgnustl_static.a
|
||||
|
||||
ifeq ($(TARGET_ARCH), arm64)
|
||||
LOCAL_PREBUILT_LIBS := lib64/libgnustl_static.a
|
||||
else ifeq ($(TARGET_ARCH), arm)
|
||||
LOCAL_PREBUILT_LIBS := lib/libgnustl_static.a
|
||||
endif
|
||||
|
||||
include $(BUILD_MULTI_PREBUILT)
|
||||
|
||||
BIN
bootable/recovery/rkupdate/stl/lib64/libgnustl_static.a
Executable file
BIN
bootable/recovery/rkupdate/stl/lib64/libgnustl_static.a
Executable file
Binary file not shown.
@ -1,6 +1,10 @@
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_PREBUILT_LIBS :=librkupdate.a
|
||||
|
||||
ifeq ($(TARGET_ARCH), arm64)
|
||||
LOCAL_PREBUILT_LIBS := lib64/librkupdate.a
|
||||
else ifeq ($(TARGET_ARCH), arm)
|
||||
LOCAL_PREBUILT_LIBS := lib/librkupdate.a
|
||||
endif
|
||||
|
||||
include $(BUILD_MULTI_PREBUILT)
|
||||
|
||||
0
bootable/recovery/rkupdate/update/librkupdate.a → bootable/recovery/rkupdate/update/lib/librkupdate.a
Normal file → Executable file
0
bootable/recovery/rkupdate/update/librkupdate.a → bootable/recovery/rkupdate/update/lib/librkupdate.a
Normal file → Executable file
BIN
bootable/recovery/rkupdate/update/lib64/librkupdate.a
Executable file
BIN
bootable/recovery/rkupdate/update/lib64/librkupdate.a
Executable file
Binary file not shown.
@ -1,6 +1,10 @@
|
||||
LOCAL_PATH := $(call my-dir)
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_PREBUILT_LIBS :=libext2_uuid.a
|
||||
|
||||
ifeq ($(TARGET_ARCH), arm64)
|
||||
LOCAL_PREBUILT_LIBS := lib64/libext2_uuid.a
|
||||
else ifeq ($(TARGET_ARCH), arm)
|
||||
LOCAL_PREBUILT_LIBS := lib/libext2_uuid.a
|
||||
endif
|
||||
|
||||
include $(BUILD_MULTI_PREBUILT)
|
||||
|
||||
BIN
bootable/recovery/rkupdate/uuid/lib64/libext2_uuid.a
Executable file
BIN
bootable/recovery/rkupdate/uuid/lib64/libext2_uuid.a
Executable file
Binary file not shown.
Reference in New Issue
Block a user