STT-tensorflow/third_party/sycl/crosstool/BUILD.tpl
Marcel Hlopko 75d558d3fd Migrate TF for https://github.com/bazelbuild/bazel/issues/6942
Since Bazel 0.22 static_runtime_libs and dynamic_runtime_libs attributes
are not mandatory, and since 0.23 they are replaced by their singluar
siblings.
2019-03-18 11:35:18 +01:00

28 lines
528 B
Smarty
Executable File

licenses(["notice"]) # Apache 2.0
package(default_visibility = ["//visibility:public"])
cc_toolchain_suite(
name = "toolchain",
toolchains = {
"local|compiler": ":cc-compiler-local",
},
)
cc_toolchain(
name = "cc-compiler-local",
all_files = ":empty",
compiler_files = ":empty",
cpu = "local",
dwp_files = ":empty",
linker_files = ":empty",
objcopy_files = ":empty",
strip_files = ":empty",
supports_param_files = 1,
)
filegroup(
name = "empty",
srcs = [],
)