STT-tensorflow/third_party/nasm/BUILD.system
Alexander Grund af156c2ebc
Use nasmlink genrule
Avoids cyclic dependency as the name and src must not be the same
2020-08-12 16:37:17 +02:00

19 lines
319 B
Plaintext

licenses(["notice"]) # BSD 2-clause
filegroup(
name = "LICENSE",
visibility = ["//visibility:public"],
)
genrule(
name = "lnnasmlink",
outs = ["nasmlink"],
cmd = "ln -s $$(which nasm) $@",
)
sh_binary(
name = "nasm",
srcs = ["nasmlink"],
visibility = ["@libjpeg_turbo//:__pkg__"],
)