aboutsummaryrefslogtreecommitdiff
path: root/Android.mk
diff options
context:
space:
mode:
authorShih-wei Liao <sliao@google.com>2010-06-07 22:05:52 -0700
committerShih-wei Liao <sliao@google.com>2010-06-07 22:19:10 -0700
commit200213f20fef82c10b7da00873c99b93cee6da63 (patch)
tree662b1705d7996a4681b8a7a4a4b9d9cbfd98a27c /Android.mk
parentea285162342df160e7860e26528bc7110bc6c0cd (diff)
downloadclang-200213f20fef82c10b7da00873c99b93cee6da63.tar.gz
Fix llvm.mk and the other 49 mk files
Change-Id: I5aa02363c1083297d163a575f5a35c495f950230
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk5
1 files changed, 5 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 78aca54b7e..dc12eb877d 100644
--- a/Android.mk
+++ b/Android.mk
@@ -1,3 +1,6 @@
+# Only use this on the device or emulator.
+ifneq ($(TARGET_ARCH),arm)
+
LOCAL_PATH := $(call my-dir)
CLANG_ROOT_PATH := $(LOCAL_PATH)
@@ -17,3 +20,5 @@ subdirs := $(addprefix $(LOCAL_PATH)/,$(addsuffix /Android.mk, \
include $(LOCAL_PATH)/clang.mk
include $(subdirs)
+
+endif