summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2014-04-16 16:29:36 -0700
committerDan Albert <danalbert@google.com>2014-04-16 16:29:36 -0700
commit1a42fce230f3fdf47424db6f53da933355a9416e (patch)
tree6057325b4f7ee2fd3a165e37def9d4da7e6f0638
parent226cd95300d2a7efbfa3f62c837d638e92c1f433 (diff)
downloadlibcxx_35a-1a42fce230f3fdf47424db6f53da933355a9416e.tar.gz
Disables building of libcxx on mips targets
Change-Id: I9494a11cd86312fa64e3fd84ff598815638a7c74
-rw-r--r--Android.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 16cf8e94..0fa55e88 100644
--- a/Android.mk
+++ b/Android.mk
@@ -14,6 +14,8 @@
# limitations under the License.
#
+# libcxx isn't working on mips yet
+ifneq ($(TARGET_ARCH),$(filter $(TARGET_ARCH), mips mips64))
LOCAL_PATH := $(call my-dir)
LIBCXX_SRC_FILES := \
@@ -74,3 +76,4 @@ LOCAL_CPPFLAGS := $(LIBCXX_CPPFLAGS)
LOCAL_LDFLAGS := -lrt -pthread
LOCAL_SHARED_LIBRARIES := libcxxabi
include $(BUILD_HOST_SHARED_LIBRARY)
+endif