We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1b305e commit 2f996baCopy full SHA for 2f996ba
runtime/core/exec_aten/util/targets.bzl
@@ -73,12 +73,15 @@ def define_common_targets():
73
force_static = True,
74
)
75
76
- runtime.cxx_library(
77
- name = "tensor_shape_to_c_string",
78
- srcs = ["tensor_shape_to_c_string.cpp"],
79
- exported_headers = ["tensor_shape_to_c_string.h"],
80
- visibility = [
81
- "//executorch/...",
82
- "@EXECUTORCH_CLIENTS",
83
- ],
84
- )
+ runtime.cxx_library(
+ name = "tensor_shape_to_c_string" + aten_suffix,
+ srcs = ["tensor_shape_to_c_string.cpp"],
+ exported_deps = [
+ "//executorch/runtime/core/exec_aten:lib" + aten_suffix,
+ ],
+ exported_headers = ["tensor_shape_to_c_string.h"],
+ visibility = [
+ "//executorch/...",
85
+ "@EXECUTORCH_CLIENTS",
86
87
+ )
0 commit comments