diff options
Diffstat (limited to 'lib/Bitcode/Reader/Android.mk')
-rw-r--r-- | lib/Bitcode/Reader/Android.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Bitcode/Reader/Android.mk b/lib/Bitcode/Reader/Android.mk index 165b0d0cde..c78b702274 100644 --- a/lib/Bitcode/Reader/Android.mk +++ b/lib/Bitcode/Reader/Android.mk @@ -1,3 +1,6 @@ +# Only use this on the device or emulator. +ifneq ($(TARGET_ARCH),arm) + LOCAL_PATH:= $(call my-dir) bitcode_reader_SRC_FILES := \ @@ -27,3 +30,5 @@ LOCAL_MODULE:= libLLVMBitReader include $(LLVM_DEVICE_BUILD_MK) include $(LLVM_GEN_INTRINSICS_MK) include $(BUILD_STATIC_LIBRARY) + +endif |