am 6f0949dc: Merge "Disable clang compiler for the mips target."

* commit '6f0949dcf271f1e40c0f690e9797046e5fe35735':
  Disable clang compiler for the mips target.
diff --git a/Android.libv8.mk b/Android.libv8.mk
index 13bb088..3421073 100644
--- a/Android.libv8.mk
+++ b/Android.libv8.mk
@@ -107,6 +107,11 @@
 # expected compatible register, symbol or integer in range [0, 4095]
 LOCAL_CLANG_CFLAGS_arm64 += -no-integrated-as
 
+# mark-compact.cc has error: macro used $at after ".set noat"
+ifeq ($(TARGET_ARCH),mips)
+    LOCAL_CLANG := false
+endif
+
 LOCAL_CFLAGS_mips += -DV8_TARGET_ARCH_MIPS \
 	-Umips \
 	-finline-limit=64 \