2021-03-12 16:54:14 +00:00
|
|
|
# buildifier: disable=module-docstring
|
|
|
|
load(
|
|
|
|
"//foreign_cc/private:cc_toolchain_util.bzl",
|
|
|
|
"get_flags_info",
|
|
|
|
"get_tools_info",
|
|
|
|
)
|
|
|
|
load(
|
|
|
|
"//foreign_cc/private:detect_root.bzl",
|
|
|
|
"detect_root",
|
|
|
|
)
|
|
|
|
load(
|
|
|
|
"//foreign_cc/private:framework.bzl",
|
|
|
|
"CC_EXTERNAL_RULE_ATTRIBUTES",
|
|
|
|
"CC_EXTERNAL_RULE_FRAGMENTS",
|
|
|
|
"cc_external_rule_impl",
|
|
|
|
"create_attrs",
|
|
|
|
)
|
2021-03-15 16:00:46 +00:00
|
|
|
load("//foreign_cc/private:make_script.bzl", "create_make_script")
|
2021-03-12 16:54:14 +00:00
|
|
|
load("//toolchains/native_tools:tool_access.bzl", "get_make_data")
|
|
|
|
|
|
|
|
def _make(ctx):
|
|
|
|
make_data = get_make_data(ctx)
|
|
|
|
|
|
|
|
tools_deps = ctx.attr.tools_deps + make_data.deps
|
|
|
|
|
|
|
|
attrs = create_attrs(
|
|
|
|
ctx.attr,
|
|
|
|
configure_name = "GNUMake",
|
|
|
|
create_configure_script = _create_make_script,
|
|
|
|
tools_deps = tools_deps,
|
|
|
|
make_path = make_data.path,
|
|
|
|
)
|
|
|
|
return cc_external_rule_impl(ctx, attrs)
|
|
|
|
|
|
|
|
def _create_make_script(configureParameters):
|
|
|
|
ctx = configureParameters.ctx
|
2021-03-17 13:42:44 +00:00
|
|
|
attrs = configureParameters.attrs
|
2021-03-12 16:54:14 +00:00
|
|
|
inputs = configureParameters.inputs
|
|
|
|
|
|
|
|
root = detect_root(ctx.attr.lib_source)
|
|
|
|
|
|
|
|
tools = get_tools_info(ctx)
|
|
|
|
flags = get_flags_info(ctx)
|
|
|
|
|
2021-03-17 13:42:44 +00:00
|
|
|
data = ctx.attr.data or list()
|
|
|
|
|
|
|
|
# Generate a list of arguments for make
|
|
|
|
args = " ".join([
|
|
|
|
ctx.expand_location(arg, data)
|
|
|
|
for arg in ctx.attr.args
|
|
|
|
])
|
|
|
|
|
|
|
|
make_commands = []
|
2021-04-12 15:23:42 +00:00
|
|
|
for target in ctx.attr.targets:
|
|
|
|
make_commands.append("{make} -C $$EXT_BUILD_ROOT$$/{root} {target} {args}".format(
|
|
|
|
make = attrs.make_path,
|
|
|
|
root = root,
|
|
|
|
args = args,
|
|
|
|
target = target,
|
|
|
|
))
|
2021-03-12 16:54:14 +00:00
|
|
|
|
|
|
|
return create_make_script(
|
|
|
|
root = root,
|
|
|
|
inputs = inputs,
|
2021-03-17 13:42:44 +00:00
|
|
|
make_commands = make_commands,
|
2021-03-12 16:54:14 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
def _attrs():
|
|
|
|
attrs = dict(CC_EXTERNAL_RULE_ATTRIBUTES)
|
2021-04-12 15:23:42 +00:00
|
|
|
attrs.pop("make_commands")
|
2021-03-12 16:54:14 +00:00
|
|
|
attrs.update({
|
2021-03-17 13:42:44 +00:00
|
|
|
"args": attr.string_list(
|
|
|
|
doc = "A list of arguments to pass to the call to `make`",
|
|
|
|
),
|
|
|
|
"targets": attr.string_list(
|
|
|
|
doc = (
|
|
|
|
"A list of targets within the foreign build system to produce. An empty string (`\"\"`) will result in " +
|
|
|
|
"a call to the underlying build system with no explicit target set"
|
2021-03-12 16:54:14 +00:00
|
|
|
),
|
|
|
|
mandatory = False,
|
2021-03-17 13:42:44 +00:00
|
|
|
default = ["", "install"],
|
2021-03-12 16:54:14 +00:00
|
|
|
),
|
|
|
|
})
|
|
|
|
return attrs
|
|
|
|
|
|
|
|
make = rule(
|
|
|
|
doc = (
|
|
|
|
"Rule for building external libraries with GNU Make. " +
|
|
|
|
"GNU Make commands (make and make install by default) are invoked with prefix=\"install\" " +
|
|
|
|
"(by default), and other environment variables for compilation and linking, taken from Bazel C/C++ " +
|
|
|
|
"toolchain and passed dependencies."
|
|
|
|
),
|
|
|
|
attrs = _attrs(),
|
|
|
|
fragments = CC_EXTERNAL_RULE_FRAGMENTS,
|
|
|
|
output_to_genfiles = True,
|
|
|
|
implementation = _make,
|
|
|
|
toolchains = [
|
|
|
|
"@rules_foreign_cc//toolchains:make_toolchain",
|
|
|
|
"@rules_foreign_cc//foreign_cc/private/shell_toolchain/toolchains:shell_commands",
|
|
|
|
"@bazel_tools//tools/cpp:toolchain_type",
|
|
|
|
],
|
|
|
|
)
|