OSDN Git Service

Disable llvm-link and opt, since we no long rely on them. The replacement is combinig...
[android-x86/external-llvm.git] / tools / llvm-link / Android.mk.disabled
1 # Only use this on the device or emulator.
2 ifeq ($(TARGET_ARCH),arm)
3
4 LOCAL_PATH:= $(call my-dir)
5 include $(CLEAR_VARS)
6
7 LOCAL_SRC_FILES :=      \
8         llvm-link.cpp
9
10 LOCAL_STATIC_LIBRARIES := libLLVMLinker libLLVMBitReader libLLVMBitWriter libLLVMCore libLLVMSupport libLLVMSystem libLLVMAsmParser
11 LOCAL_MODULE := llvm-link
12 LOCAL_LDLIBS += -lpthread -lm -ldl
13
14 include $(LLVM_HOST_BUILD_MK)
15 include $(BUILD_HOST_EXECUTABLE)
16
17 endif