aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/llvm
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-06-21 12:45:34 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-06-21 12:49:14 -0700
commita24366fa00e5ac0b70c8871d459f5569459329d5 (patch)
tree22a7cb43716686cc5917eec2eef887b3930731ee /third_party/llvm
parentd7171eb0a88bee4c52107126b0b347dbeacc1c8a (diff)
Adding missing deps to targets in llvm.BUILD. This was only working in non-sandboxed builds.
PiperOrigin-RevId: 159729295
Diffstat (limited to 'third_party/llvm')
-rw-r--r--third_party/llvm/llvm.BUILD8
1 files changed, 8 insertions, 0 deletions
diff --git a/third_party/llvm/llvm.BUILD b/third_party/llvm/llvm.BUILD
index 32266997a7..678626b374 100644
--- a/third_party/llvm/llvm.BUILD
+++ b/third_party/llvm/llvm.BUILD
@@ -453,6 +453,7 @@ llvm_target_list = [
"include/llvm/IR/Intrinsics*.td",
"include/llvm/TableGen/*.td",
"include/llvm/Target/*.td",
+ "include/llvm/Target/GlobalISel/*.td",
]),
)
for target in llvm_target_list
@@ -1067,6 +1068,8 @@ cc_library(
"include/llvm/BinaryFormat/*.h",
"include/llvm/BinaryFormat/*.def",
"include/llvm/BinaryFormat/*.inc",
+ "include/llvm/BinaryFormat/ELFRelocs/*.def",
+ "include/llvm/BinaryFormat/WasmRelocs/*.def",
]),
deps = [
":config",
@@ -1194,6 +1197,7 @@ cc_library(
"include/llvm/DebugInfo/CodeView/*.inc",
]),
deps = [
+ ":binary_format",
":config",
":debug_info_msf",
":support",
@@ -1426,6 +1430,7 @@ cc_library(
"include/llvm/MC/*.inc",
]),
deps = [
+ ":binary_format",
":config",
":debug_info_code_view",
":support",
@@ -1921,6 +1926,8 @@ cc_library(
"lib/Support/Unix/*.h",
"include/llvm-c/*.h",
"include/llvm/CodeGen/MachineValueType.h",
+ "include/llvm/BinaryFormat/COFF.h",
+ "include/llvm/BinaryFormat/MachO.h",
"lib/Support/*.h",
]),
hdrs = glob([
@@ -1931,6 +1938,7 @@ cc_library(
"include/llvm/Support/ELFRelocs/*.def",
"include/llvm/Support/WasmRelocs/*.def",
]) + [
+ "include/llvm/BinaryFormat/MachO.def",
"include/llvm/Support/DataTypes.h",
"include/llvm/ExecutionEngine/ObjectMemoryBuffer.h",
],