我正在尝试在cc_binary规则的输出上运行qemu。为此,我创建了一个与this example非常类似的自定义规则,但是我不想在txt文件上使用cat
命令,而是在输出elf文件上调用qemu(“: test_portos.elf“)cc_binary规则。我的文件如下:
def _impl(ctx):
# The path of ctx.file.target.path is:
'bazel-out/cortex-a9-fastbuild/bin/test/test_portos.elf'
target = ctx.file.target.path
command = "qemu-system-arm -M xilinx-zynq-a9 -cpu cortex-a9 -nographic
-monitor null -serial null -semihosting
-kernel %s" % (target)
ctx.actions.write(
output=ctx.outputs.executable,
content=command,
is_executable=True)
return [DefaultInfo(
runfiles=ctx.runfiles(files=[ctx.file.target])
)]
execute = rule(
implementation=_impl,
executable=True,
attrs={
"command": attr.string(),
"target" : attr.label(cfg="data", allow_files=True,
single_file=True, mandatory=True)
},
)
load("//make:run_tests.bzl", "execute")
execute(
name = "portos",
target = ":test_portos.elf"
)
cc_binary(
name = "test_portos.elf",
srcs = glob(["*.cc"]),
deps = ["//src:portos",
"@unity//:unity"],
copts = ["-Isrc",
"-Iexternal/unity/src",
"-Iexternal/unity/extras/fixture/src"]
)
问题是,在(自定义规则的)命令中,使用了“:test_portos.elf”的位置,而不是runfile的位置。我也尝试过像example中所示,将$(location :test_portos.elf)
与ctx.expand_location
一起使用,但结果是一样的。
如何获取“test_portos.elf”运行文件的位置并将其插入自定义规则的命令中?
提前致谢!
答案 0 :(得分:1)
似乎根据File的short_path安全运行文件,所以这就是我需要在run_tests.bzl文件中更改的内容:
target = ctx.file.target.short_path