File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed
utils/bazel/llvm-project-overlay/llvm Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -1063,6 +1063,18 @@ cc_library(
1063
1063
],
1064
1064
)
1065
1065
1066
+ gentbl (
1067
+ name = "RISCVTargetParserDefGen" ,
1068
+ tbl_outs = [("-gen-riscv-target-def" , "include/llvm/TargetParser/RISCVTargetParserDef.inc" )],
1069
+ tblgen = ":llvm-tblgen" ,
1070
+ td_file = "lib/Target/RISCV/RISCV.td" ,
1071
+ td_srcs = [
1072
+ ":common_target_td_sources" ,
1073
+ ] + glob ([
1074
+ "lib/Target/RISCV/**/*.td" ,
1075
+ ]),
1076
+ )
1077
+
1066
1078
cc_library (
1067
1079
name = "TargetParser" ,
1068
1080
srcs = glob ([
@@ -1083,7 +1095,9 @@ cc_library(
1083
1095
]),
1084
1096
copts = llvm_copts ,
1085
1097
includes = ["include" ],
1086
- textual_hdrs = glob ([
1098
+ textual_hdrs = [
1099
+ "include/llvm/TargetParser/RISCVTargetParserDef.inc" ,
1100
+ ] + glob ([
1087
1101
"include/llvm/TargetParser/*.def" ,
1088
1102
]),
1089
1103
deps = [
You can’t perform that action at this time.
0 commit comments