diff options
author | Ying Wang <wangying@google.com> | 2010-08-19 17:39:26 -0700 |
---|---|---|
committer | Ying Wang <wangying@google.com> | 2010-08-19 17:39:26 -0700 |
commit | 28c238c9ded0b5c91e122c94b5a02d76a5245c11 (patch) | |
tree | b85fb84a4b31993292f3d88b66df518ed5975b3c /lib/Target/ARM | |
parent | 3e5165a7cc01d28b680a5f409eda72788cb451d3 (diff) | |
download | external_llvm-28c238c9ded0b5c91e122c94b5a02d76a5245c11.zip external_llvm-28c238c9ded0b5c91e122c94b5a02d76a5245c11.tar.gz external_llvm-28c238c9ded0b5c91e122c94b5a02d76a5245c11.tar.bz2 |
Fix sim build.
Note that this only makes the sim build green, but the built images won't work for sure:
No libbcc.so, which depends on something else that can not build in sim mode.
No x86 bitcode is generated as well, I believe.
Change-Id: Idca8378427196622ac77cd56a38c6a160f03ba22
Diffstat (limited to 'lib/Target/ARM')
-rw-r--r-- | lib/Target/ARM/Android.mk | 5 | ||||
-rw-r--r-- | lib/Target/ARM/AsmParser/Android.mk | 5 | ||||
-rw-r--r-- | lib/Target/ARM/AsmPrinter/Android.mk | 5 | ||||
-rw-r--r-- | lib/Target/ARM/Disassembler/Android.mk | 5 | ||||
-rw-r--r-- | lib/Target/ARM/TargetInfo/Android.mk | 5 |
5 files changed, 0 insertions, 25 deletions
diff --git a/lib/Target/ARM/Android.mk b/lib/Target/ARM/Android.mk index 8d499d6..e4d2f68 100644 --- a/lib/Target/ARM/Android.mk +++ b/lib/Target/ARM/Android.mk @@ -1,6 +1,3 @@ -# Only use this on the device or emulator. -ifeq ($(TARGET_ARCH),arm) - LOCAL_PATH := $(call my-dir) arm_codegen_TBLGEN_TABLES := \ @@ -71,5 +68,3 @@ include $(LLVM_DEVICE_BUILD_MK) include $(LLVM_TBLGEN_RULES_MK) include $(LLVM_GEN_INTRINSICS_MK) include $(BUILD_STATIC_LIBRARY) - -endif diff --git a/lib/Target/ARM/AsmParser/Android.mk b/lib/Target/ARM/AsmParser/Android.mk index e0587fd..b862991 100644 --- a/lib/Target/ARM/AsmParser/Android.mk +++ b/lib/Target/ARM/AsmParser/Android.mk @@ -1,6 +1,3 @@ -# Only use this on the device or emulator. -ifeq ($(TARGET_ARCH),arm) - LOCAL_PATH := $(call my-dir) # For the device only @@ -28,5 +25,3 @@ LOCAL_MODULE:= libLLVMARMAsmParser include $(LLVM_DEVICE_BUILD_MK) include $(LLVM_TBLGEN_RULES_MK) include $(BUILD_STATIC_LIBRARY) - -endif diff --git a/lib/Target/ARM/AsmPrinter/Android.mk b/lib/Target/ARM/AsmPrinter/Android.mk index 1a568eb..e233d67 100644 --- a/lib/Target/ARM/AsmPrinter/Android.mk +++ b/lib/Target/ARM/AsmPrinter/Android.mk @@ -1,6 +1,3 @@ -# Only use this on the device or emulator. -ifeq ($(TARGET_ARCH),arm) - LOCAL_PATH := $(call my-dir) arm_asm_printer_TBLGEN_TABLES := \ @@ -53,5 +50,3 @@ LOCAL_MODULE:= libLLVMARMAsmPrinter include $(LLVM_DEVICE_BUILD_MK) include $(LLVM_TBLGEN_RULES_MK) include $(BUILD_STATIC_LIBRARY) - -endif diff --git a/lib/Target/ARM/Disassembler/Android.mk b/lib/Target/ARM/Disassembler/Android.mk index ab5800c..9a8f7d8 100644 --- a/lib/Target/ARM/Disassembler/Android.mk +++ b/lib/Target/ARM/Disassembler/Android.mk @@ -1,6 +1,3 @@ -# Only use this on the device or emulator. -ifeq ($(TARGET_ARCH),arm) - LOCAL_PATH := $(call my-dir) # For the device only @@ -30,5 +27,3 @@ LOCAL_MODULE:= libLLVMARMDisassembler include $(LLVM_DEVICE_BUILD_MK) include $(LLVM_TBLGEN_RULES_MK) include $(BUILD_STATIC_LIBRARY) - -endif diff --git a/lib/Target/ARM/TargetInfo/Android.mk b/lib/Target/ARM/TargetInfo/Android.mk index 221af98..8ef7ed9 100644 --- a/lib/Target/ARM/TargetInfo/Android.mk +++ b/lib/Target/ARM/TargetInfo/Android.mk @@ -1,6 +1,3 @@ -# Only use this on the device or emulator. -ifeq ($(TARGET_ARCH),arm) - LOCAL_PATH := $(call my-dir) arm_target_info_TBLGEN_TABLES := \ @@ -49,5 +46,3 @@ LOCAL_MODULE:= libLLVMARMInfo include $(LLVM_DEVICE_BUILD_MK) include $(LLVM_TBLGEN_RULES_MK) include $(BUILD_STATIC_LIBRARY) - -endif |