根据--config有条件地创建Bazel规则

问题描述

我正在解决一个问题,在该问题中,如果指定了特定的Bazel配置(通过'--config'),我只想创建一个特定规则。从0.11开始,我们一直在使用Bazel,并且拥有大量构建基础结构,这些基础结构都可以解决Bazel中以前的限制。我正在逐步将我们移植到较新的版本。缺少的功能之一是编译器转换,因此我们使用配置和一些外部脚本进行了滚动。

我为解决问题所做的第一次尝试是这样的:

load("@rules_cc//cc:defs.bzl","cc_library")

# use this with a select to pick targets to include/exclude based on config
# see __build_if_role for an example
def noop_impl(ctx):
    pass

noop = rule(
    implementation = noop_impl,attrs = {
        "deps": attr.label_list(),},)

def __sanitize(config):
    if len(config) > 2 and config[:2] == "//":
        config = config[2:]
    return config.replace(":","_").replace("/","_")

def build_if_config(**kwargs):
    config = kwargs['config']
    kwargs.pop('config')
    name = kwargs['name'] + '_' + __sanitize(config)

    binary_target_name = kwargs['name']
    kwargs['name'] = binary_target_name
    cc_library(**kwargs)

    noop(
        name = name,deps = select({
            config: [ binary_target_name ],"//conditions:default": [],})
    )

这几乎使我到达那里,但是问题是,如果我想将库构建为输出,那么它将成为中间依赖项,因此将被删除或从不构建。

例如,如果我这样做:

build_if_config(
  name="some_lib",srcs=[ "foo.c" ],config="//:my_config",)

然后我跑

bazel build --config my_config //:some_lib

然后,libsome_lib.a不会成为bazel-out,尽管如果我使用cc_library进行定义,那么它也会这么做。

有没有一种方法可以直接在宏中直接创建适当的规则,而不是创建noop规则并使用select?还是其他机制?

在此先感谢您的帮助!

解决方法

正如我在评论中指出的那样,我误解了Bazel如何弄清其依赖性。 The create a file section of The Rules Tutorial解释了一些细节,我跟随here提出了一些解决方案。

基本上,问题不在于所生成的文件没有保留,而在于它们从未被生成。 Bazel不知道要查看deps变量并构建这些内容:看来我必须创建一个使用deps的动作,然后通过返回DefaultInfo(的列表)注册一个动作

下面是我的新noop_impl函数

def noop_impl(ctx):
    if len(ctx.attr.deps) == 0:
        return None

    # ctx.attr has the attributes of this rule
    dep = ctx.attr.deps[0]
    # DefaultInfo is apparently some sort of globally available
    # class that can be used to index Target objects
    infile = dep[DefaultInfo].files.to_list()[0]
    outfile = ctx.actions.declare_file('lib' + ctx.label.name + '.a')

    ctx.actions.run_shell(
        inputs = [infile],outputs = [outfile],command = "cp %s %s" % (infile.path,outfile.path),)

    # we can also instantiate a DefaultInfo to indicate what output 
    # we provide
    return [DefaultInfo(files = depset([outfile]))]

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...