STT-tensorflow/third_party/toolchains/embedded/linaro-gcc72-aarch64/BUILD
2020-08-06 19:19:26 +02:00

68 lines
2.0 KiB
Python

# This is the entry point for --crosstool_top.
#
# The cc_toolchain rule used is found by:
#
# 1. Finding the appropriate toolchain in the CROSSTOOL file based on the --cpu
# and --compiler command line flags (if they exist, otherwise using the
# "default_target_cpu" / "default_toolchain" fields in the CROSSTOOL file)
# 2. Concatenating the "target_cpu" and "compiler" fields of the toolchain in
# use and using that as a key in the map in the "toolchains" attribute
package(default_visibility = ["//visibility:public"])
load(":linaro_toolchain_config.bzl", "linaro_toolchain_config")
cc_toolchain_suite(
name = "toolchain",
toolchains = {
"aarch64": ":cc-compiler-aarch64",
},
)
filegroup(
name = "empty",
srcs = [],
)
filegroup(
name = "gcc_linux_all_files",
srcs = [
"//third_party/toolchains/embedded/linaro-gcc72-aarch64/gcc:tool-wrappers",
"@LinaroAarch64Gcc72//:compiler_pieces",
],
)
filegroup(
name = "gcc_linux_linker_files",
srcs = [
"//third_party/toolchains/embedded/linaro-gcc72-aarch64/gcc:ld",
"//third_party/toolchains/embedded/linaro-gcc72-aarch64/gcc:ar",
"@LinaroAarch64Gcc72//:compiler_pieces",
],
)
filegroup(
name = "gcc_linux_compiler_files",
srcs = [
"//third_party/toolchains/embedded/linaro-gcc72-aarch64/gcc:gcc",
"//third_party/toolchains/embedded/linaro-gcc72-aarch64/gcc:as",
],
)
linaro_toolchain_config(name = "linaro_aarch64")
cc_toolchain(
name = "cc-compiler-aarch64",
all_files = ":gcc_linux_all_files",
compiler_files = ":gcc_linux_compiler_files",
toolchain_identifier = "gcc72_linaro_aarch64",
toolchain_config = ":linaro_aarch64",
dwp_files = ":empty",
dynamic_runtime_lib = ":empty",
linker_files = ":gcc_linux_linker_files",
objcopy_files = "//third_party/toolchains/embedded/linaro-gcc72-aarch64/gcc:objcopy",
static_runtime_lib = ":empty",
strip_files = "//third_party/toolchains/embedded/linaro-gcc72-aarch64/gcc:strip",
supports_param_files = 1,
visibility = ["//visibility:public"],
)