File tree Expand file tree Collapse file tree 1 file changed +51
-0
lines changed
utils/bazel/llvm-project-overlay/llvm Expand file tree Collapse file tree 1 file changed +51
-0
lines changed Original file line number Diff line number Diff line change @@ -5671,6 +5671,57 @@ cc_binary(
56715671 ],
56725672)
56735673
5674+ cc_binary (
5675+ name = "llvm-sim" ,
5676+ testonly = True ,
5677+ srcs = glob ([
5678+ "tools/llvm-sim/*.cpp" ,
5679+ ]),
5680+ copts = llvm_copts ,
5681+ stamp = 0 ,
5682+ deps = [
5683+ ":Analysis" ,
5684+ ":Core" ,
5685+ ":IRReader" ,
5686+ ":Support" ,
5687+ ":config" ,
5688+ ],
5689+ )
5690+
5691+ cc_binary (
5692+ name = "llvm-ir2vec" ,
5693+ testonly = True ,
5694+ srcs = glob ([
5695+ "tools/llvm-ir2vec/*.cpp" ,
5696+ ]),
5697+ copts = llvm_copts ,
5698+ stamp = 0 ,
5699+ deps = [
5700+ ":Analysis" ,
5701+ ":Core" ,
5702+ ":IRReader" ,
5703+ ":Support" ,
5704+ ":config" ,
5705+ ],
5706+ )
5707+
5708+ cc_binary (
5709+ name = "llvm-ctxprof-util" ,
5710+ testonly = True ,
5711+ srcs = glob ([
5712+ "tools/llvm-ctxprof-util/*.cpp" ,
5713+ ]),
5714+ copts = llvm_copts ,
5715+ stamp = 0 ,
5716+ deps = [
5717+ ":Core" ,
5718+ ":Object" ,
5719+ ":ProfileData" ,
5720+ ":Support" ,
5721+ ":config" ,
5722+ ],
5723+ )
5724+
56745725cc_binary (
56755726 name = "obj2yaml" ,
56765727 testonly = True ,
You can’t perform that action at this time.
0 commit comments