aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLogan Chien <loganchien@google.com>2011-10-25 21:01:52 +0800
committerShih-wei Liao <sliao@google.com>2011-11-09 09:50:10 -0800
commit4be65eeae53ab540d9c2328a09f3c83e2529a6e8 (patch)
tree1337ed706da4915d17c250f6f412cfa177841b53
parentf593dbc85b95a4016faf0d40eb2977755ce96f12 (diff)
downloadllvm-ics-mr1-release.tar.gz
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
-rw-r--r--lib/Target/X86/MCTargetDesc/Android.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/X86/MCTargetDesc/Android.mk b/lib/Target/X86/MCTargetDesc/Android.mk
index f50d0815c034..b7ab1deda82e 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)