diff options
author | Simon Shi <simonsmh@gmail.com> | 2019-03-08 17:57:04 +0100 |
---|---|---|
committer | Ethan Yonker <dees_troy@teamw.in> | 2019-03-22 22:33:47 +0100 |
commit | e68259848046a68c74aa290f35c05d2045fa5ffc (patch) | |
tree | 478b5f9d3b8ea608a4c91247802d7486aeda7c9a /prebuilt | |
parent | twinstall: Force variable type (diff) | |
download | android_bootable_recovery-e68259848046a68c74aa290f35c05d2045fa5ffc.tar android_bootable_recovery-e68259848046a68c74aa290f35c05d2045fa5ffc.tar.gz android_bootable_recovery-e68259848046a68c74aa290f35c05d2045fa5ffc.tar.bz2 android_bootable_recovery-e68259848046a68c74aa290f35c05d2045fa5ffc.tar.lz android_bootable_recovery-e68259848046a68c74aa290f35c05d2045fa5ffc.tar.xz android_bootable_recovery-e68259848046a68c74aa290f35c05d2045fa5ffc.tar.zst android_bootable_recovery-e68259848046a68c74aa290f35c05d2045fa5ffc.zip |
Diffstat (limited to 'prebuilt')
-rw-r--r-- | prebuilt/Android.mk | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/prebuilt/Android.mk b/prebuilt/Android.mk index de8287937..a7208a228 100644 --- a/prebuilt/Android.mk +++ b/prebuilt/Android.mk @@ -362,6 +362,21 @@ ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 27; echo $$?),0) ifeq ($(TARGET_ARCH), arm64) RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libclang_rt.ubsan_standalone-aarch64-android.so endif + ifeq ($(TARGET_ARCH), arm) + RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libclang_rt.ubsan_standalone-arm-android.so + endif + ifeq ($(TARGET_ARCH), x86_64) + RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libclang_rt.ubsan_standalone-x86_64-android.so + endif + ifeq ($(TARGET_ARCH), x86) + RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libclang_rt.ubsan_standalone-i686-android.so + endif + ifeq ($(TARGET_ARCH), mips) + RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libclang_rt.ubsan_standalone-mips-android.so + endif + ifeq ($(TARGET_ARCH), mips64) + RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libclang_rt.ubsan_standalone-mips64-android.so + endif RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/liblogwrap.so RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libext2_misc.so endif |