Disables building of libcxxabi on mips targets

Change-Id: I435898547be3aa5e20c455c373c17ad10bfdfe10
diff --git a/Android.mk b/Android.mk
index 95a8a40..cec58fd 100644
--- a/Android.mk
+++ b/Android.mk
@@ -14,6 +14,8 @@
 # limitations under the License.
 #
 
+# libcxxabi isn't working on mips yet
+ifneq ($(TARGET_ARCH),$(filter $(TARGET_ARCH), mips mips64))
 LOCAL_PATH := $(call my-dir)
 
 LIBCXXABI_SRC_FILES := \
@@ -79,3 +81,4 @@
 LOCAL_LDFLAGS := -lpthread
 LOCAL_RTTI_FLAG := $(LIBCXXABI_RTTI_FLAG)
 include $(BUILD_HOST_SHARED_LIBRARY)
+endif