diff options
-rw-r--r-- | compiler/Android.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/Android.mk b/compiler/Android.mk index 3d7db08f29..9c7864524d 100644 --- a/compiler/Android.mk +++ b/compiler/Android.mk @@ -269,8 +269,10 @@ $$(ENUM_OPERATOR_OUT_GEN): $$(GENERATED_SRC_DIR)/%_operator_out.cc : $(LOCAL_PAT # For atrace. LOCAL_SHARED_LIBRARIES += libcutils ifeq ($(TARGET_HAVE_QC_PERF),true) - # FIXME! Current PERF is built with GCC and needs emutls - LOCAL_CLANG := false + ifeq ($(TARGET_ARCH),arm) + # FIXME! Current PERF is built with GCC and needs emutls + LOCAL_CLANG := false + endif LOCAL_WHOLE_STATIC_LIBRARIES_arm += libqc-art-compiler endif include $(BUILD_SHARED_LIBRARY) |