aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM/Android.mk
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2011-02-07 10:16:49 -0800
committerKenny Root <kroot@google.com>2011-02-07 11:13:04 -0800
commitcfb9e3db360f9161eede09766fadb2cb178771cb (patch)
tree72f05f8fa24968a4c6e75edaf2e406b80eab96fe /lib/Target/ARM/Android.mk
parent016557b23a5b9ff66bc033fa60eecf79c85f2ec7 (diff)
downloadexternal_llvm-cfb9e3db360f9161eede09766fadb2cb178771cb.zip
external_llvm-cfb9e3db360f9161eede09766fadb2cb178771cb.tar.gz
external_llvm-cfb9e3db360f9161eede09766fadb2cb178771cb.tar.bz2
Initial pass at adding X86 target support
Add some Makefile support for using X86 as a target as in "full_x86-eng" However, this is not enough. More changes will be coming in future changelists. Change-Id: Id2765c9ba15404ebce09168738cebf5d00a2e15d
Diffstat (limited to 'lib/Target/ARM/Android.mk')
-rw-r--r--lib/Target/ARM/Android.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/ARM/Android.mk b/lib/Target/ARM/Android.mk
index 4292a12..b8dba43 100644
--- a/lib/Target/ARM/Android.mk
+++ b/lib/Target/ARM/Android.mk
@@ -63,6 +63,7 @@ include $(BUILD_HOST_STATIC_LIBRARY)
# For the device only
# =====================================================
+ifeq ($(TARGET_ARCH),arm)
include $(CLEAR_VARS)
include $(CLEAR_TBLGEN_VARS)
@@ -78,3 +79,4 @@ include $(LLVM_DEVICE_BUILD_MK)
include $(LLVM_TBLGEN_RULES_MK)
include $(LLVM_GEN_INTRINSICS_MK)
include $(BUILD_STATIC_LIBRARY)
+endif