diff options
Diffstat (limited to 'compiler/Android.mk')
-rw-r--r-- | compiler/Android.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/compiler/Android.mk b/compiler/Android.mk index 84176a177b..70c7e521a6 100644 --- a/compiler/Android.mk +++ b/compiler/Android.mk @@ -279,7 +279,11 @@ $$(ENUM_OPERATOR_OUT_GEN): $$(GENERATED_SRC_DIR)/%_operator_out.cc : $(LOCAL_PAT LOCAL_ADDITIONAL_DEPENDENCIES := art/build/Android.common_build.mk LOCAL_ADDITIONAL_DEPENDENCIES += $(LOCAL_PATH)/Android.mk # Vixl assembly support for ARM64 targets. - LOCAL_SHARED_LIBRARIES += libvixl + ifeq ($$(art_ndebug_or_debug),debug) + LOCAL_SHARED_LIBRARIES += libvixld + else + LOCAL_SHARED_LIBRARIES += libvixl + endif ifeq ($$(art_target_or_host),target) # For atrace. LOCAL_SHARED_LIBRARIES += libcutils |