blob: 13da039ede52ee0a2178741ca867eeb5a9c4ea12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
LOCAL_PATH := $(call my-dir)
x86_mc_desc_TBLGEN_TABLES := \
X86GenRegisterInfo.inc \
X86GenInstrInfo.inc \
X86GenSubtargetInfo.inc
x86_mc_desc_SRC_FILES := \
X86MCAsmInfo.cpp \
X86MCTargetDesc.cpp
# For the host
# =====================================================
include $(CLEAR_VARS)
include $(CLEAR_TBLGEN_VARS)
TBLGEN_TABLES := $(x86_mc_desc_TBLGEN_TABLES)
LOCAL_SRC_FILES := $(x86_mc_desc_SRC_FILES)
LOCAL_MODULE:= libLLVMX86Desc
LOCAL_MODULE_TAGS := optional
include $(LLVM_HOST_BUILD_MK)
include $(LLVM_TBLGEN_RULES_MK)
include $(LLVM_GEN_INTRINSICS_MK)
include $(BUILD_HOST_STATIC_LIBRARY)
# For the device only
# =====================================================
ifeq ($(TARGET_ARCH),x86)
include $(CLEAR_VARS)
include $(CLEAR_TBLGEN_VARS)
TBLGEN_TABLES := $(x86_mc_desc_TBLGEN_TABLES)
LOCAL_SRC_FILES := $(x86_mc_desc_SRC_FILES)
LOCAL_MODULE:= libLLVMX86Desc
LOCAL_MODULE_TAGS := optional
include $(LLVM_DEVICE_BUILD_MK)
include $(LLVM_TBLGEN_RULES_MK)
include $(LLVM_GEN_INTRINSICS_MK)
include $(BUILD_STATIC_LIBRARY)
endif
|