diff options
| author | Logan Chien <loganchien@google.com> | 2011-10-25 21:01:52 +0800 |
|---|---|---|
| committer | Shih-wei Liao <sliao@google.com> | 2011-11-09 09:50:10 -0800 |
| commit | 4be65eeae53ab540d9c2328a09f3c83e2529a6e8 (patch) | |
| tree | 1337ed706da4915d17c250f6f412cfa177841b53 /lib/Target | |
| parent | f593dbc85b95a4016faf0d40eb2977755ce96f12 (diff) | |
| download | external_llvm-4be65eeae53ab540d9c2328a09f3c83e2529a6e8.zip external_llvm-4be65eeae53ab540d9c2328a09f3c83e2529a6e8.tar.gz external_llvm-4be65eeae53ab540d9c2328a09f3c83e2529a6e8.tar.bz2 | |
Add missing TBLGEN_TD_DIR
This commit fixes a potential build breakage. Without
this commit, the LLVM might break the build due to
TBLGEN_TD_DIR is not set properly, and tblgen can no longer
find the *.td inputs.
Change-Id: Ia995ef0582f44e091c42734ae748224e19e79999
Diffstat (limited to 'lib/Target')
| -rw-r--r-- | lib/Target/X86/MCTargetDesc/Android.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/X86/MCTargetDesc/Android.mk b/lib/Target/X86/MCTargetDesc/Android.mk index f50d081..b7ab1de 100644 --- a/lib/Target/X86/MCTargetDesc/Android.mk +++ b/lib/Target/X86/MCTargetDesc/Android.mk @@ -23,6 +23,7 @@ LOCAL_MODULE_TAGS := optional LOCAL_SRC_FILES := $(x86_mc_desc_SRC_FILES) LOCAL_C_INCLUDES := $(LOCAL_PATH)/.. TBLGEN_TABLES := $(x86_mc_desc_TBLGEN_TABLES) +TBLGEN_TD_DIR := $(LOCAL_PATH)/.. include $(LLVM_HOST_BUILD_MK) include $(LLVM_TBLGEN_RULES_MK) @@ -42,6 +43,7 @@ LOCAL_MODULE_TAGS := optional LOCAL_SRC_FILES := $(x86_mc_desc_SRC_FILES) LOCAL_C_INCLUDES := $(LOCAL_PATH)/.. TBLGEN_TABLES := $(x86_mc_desc_TBLGEN_TABLES) +TBLGEN_TD_DIR := $(LOCAL_PATH)/.. include $(LLVM_DEVICE_BUILD_MK) include $(LLVM_TBLGEN_RULES_MK) |
