File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
utils/bazel/llvm-project-overlay/mlir Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 7
7
8
8
load ("@bazel_skylib//rules:common_settings.bzl" , "bool_flag" )
9
9
load ("@bazel_skylib//rules:expand_template.bzl" , "expand_template" )
10
+ load ("//llvm:binary_alias.bzl" , "binary_alias" )
10
11
load (
11
12
":build_defs.bzl" ,
12
13
"cc_headers_only" ,
@@ -10174,8 +10175,8 @@ cc_binary(
10174
10175
)
10175
10176
10176
10177
cc_binary (
10177
- name = "mlir-cpu- runner" ,
10178
- srcs = ["tools/mlir-cpu- runner/mlir-cpu -runner.cpp" ],
10178
+ name = "mlir-runner" ,
10179
+ srcs = ["tools/mlir-runner/mlir-runner.cpp" ],
10179
10180
deps = [
10180
10181
":AllToLLVMIRTranslations" ,
10181
10182
":BuiltinToLLVMIRTranslation" ,
@@ -10195,6 +10196,12 @@ cc_binary(
10195
10196
],
10196
10197
)
10197
10198
10199
+ # TODO: Remove this alias.
10200
+ binary_alias (
10201
+ name = "mlir-cpu-runner" ,
10202
+ binary = ":mlir-runner" ,
10203
+ )
10204
+
10198
10205
# This target provides the headers from LLVM's Support target without any of
10199
10206
# the symbols. In particular, it does not contain the static registration code
10200
10207
# which may be executed by at most one shared library loaded by ORCJit. Direct
You can’t perform that action at this time.
0 commit comments