2021-03-12 16:54:14 +00:00
|
|
|
""" Defines the rule for building external library with CMake
|
|
|
|
"""
|
|
|
|
|
|
|
|
load(
|
|
|
|
"//foreign_cc/private:cc_toolchain_util.bzl",
|
|
|
|
"get_flags_info",
|
|
|
|
"get_tools_info",
|
|
|
|
"is_debug_mode",
|
|
|
|
)
|
|
|
|
load("//foreign_cc/private:cmake_script.bzl", "create_cmake_script")
|
2021-03-17 13:42:44 +00:00
|
|
|
load("//foreign_cc/private:detect_root.bzl", "detect_root")
|
2021-03-12 16:54:14 +00:00
|
|
|
load(
|
|
|
|
"//foreign_cc/private:framework.bzl",
|
|
|
|
"CC_EXTERNAL_RULE_ATTRIBUTES",
|
|
|
|
"CC_EXTERNAL_RULE_FRAGMENTS",
|
|
|
|
"cc_external_rule_impl",
|
|
|
|
"create_attrs",
|
|
|
|
)
|
2021-03-17 13:42:44 +00:00
|
|
|
load(
|
|
|
|
"//foreign_cc/private:shell_script_helper.bzl",
|
|
|
|
"os_name",
|
|
|
|
)
|
2021-03-12 16:54:14 +00:00
|
|
|
load(
|
|
|
|
"//toolchains/native_tools:tool_access.bzl",
|
|
|
|
"get_cmake_data",
|
|
|
|
"get_make_data",
|
|
|
|
"get_ninja_data",
|
|
|
|
)
|
|
|
|
|
|
|
|
def _cmake_impl(ctx):
|
|
|
|
cmake_data = get_cmake_data(ctx)
|
|
|
|
|
2021-03-17 13:42:44 +00:00
|
|
|
tools_deps = ctx.attr.tools_deps + cmake_data.deps
|
|
|
|
env = dict(ctx.attr.env)
|
2021-03-12 16:54:14 +00:00
|
|
|
|
2021-03-17 13:42:44 +00:00
|
|
|
generator, generate_args = _get_generator_target(ctx)
|
|
|
|
if "Unix Makefiles" == generator:
|
|
|
|
make_data = get_make_data(ctx)
|
|
|
|
tools_deps.extend(make_data.deps)
|
|
|
|
env.update({"CMAKE_MAKE_PROGRAM": make_data.path})
|
|
|
|
elif "Ninja" in generator:
|
|
|
|
ninja_data = get_ninja_data(ctx)
|
|
|
|
tools_deps.extend(ninja_data.deps)
|
|
|
|
env.update({"CMAKE_MAKE_PROGRAM": ninja_data.path})
|
2021-03-12 16:54:14 +00:00
|
|
|
|
|
|
|
attrs = create_attrs(
|
|
|
|
ctx.attr,
|
2021-03-17 13:42:44 +00:00
|
|
|
env = env,
|
|
|
|
generator = generator,
|
|
|
|
generate_args = generate_args,
|
2021-03-12 16:54:14 +00:00
|
|
|
configure_name = "CMake",
|
|
|
|
create_configure_script = _create_configure_script,
|
|
|
|
tools_deps = tools_deps,
|
|
|
|
cmake_path = cmake_data.path,
|
|
|
|
)
|
|
|
|
|
|
|
|
return cc_external_rule_impl(ctx, attrs)
|
|
|
|
|
|
|
|
def _create_configure_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)
|
|
|
|
if len(ctx.attr.working_directory) > 0:
|
|
|
|
root = root + "/" + ctx.attr.working_directory
|
|
|
|
|
|
|
|
tools = get_tools_info(ctx)
|
|
|
|
|
|
|
|
# CMake will replace <TARGET> with the actual output file
|
|
|
|
flags = get_flags_info(ctx, "<TARGET>")
|
|
|
|
no_toolchain_file = ctx.attr.cache_entries.get("CMAKE_TOOLCHAIN_FILE") or not ctx.attr.generate_crosstool_file
|
|
|
|
|
2021-03-17 13:42:44 +00:00
|
|
|
cmake_commands = []
|
|
|
|
|
|
|
|
# If the legacy `make_commands` attribute was not set, use the new
|
|
|
|
# `targets` api for building our target.
|
|
|
|
if not ctx.attr.make_commands:
|
|
|
|
data = ctx.attr.data + getattr(ctx.attr, "tools_deps", [])
|
|
|
|
configuration = "Debug" if is_debug_mode(ctx) else "Release"
|
|
|
|
|
|
|
|
# Generate a list of arguments for cmake's build command
|
|
|
|
build_args = " ".join([
|
|
|
|
ctx.expand_location(arg, data)
|
|
|
|
for arg in ctx.attr.build_args
|
|
|
|
])
|
|
|
|
|
|
|
|
# Generate commands for all the targets, ensuring there's
|
|
|
|
# always at least 1 call to the default target.
|
|
|
|
for target in ctx.attr.targets or [""]:
|
2021-03-18 15:35:55 +00:00
|
|
|
# There's no need to use the `--target` argument for an empty/"all" target
|
|
|
|
if target:
|
|
|
|
target = "--target '{}'".format(target)
|
|
|
|
|
2021-03-17 13:42:44 +00:00
|
|
|
# Note that even though directory is always passed, the
|
|
|
|
# following arguments can take precedence.
|
2021-03-18 15:35:55 +00:00
|
|
|
cmake_commands.append("{cmake} --build {dir} --config {config} {target} {args}".format(
|
2021-03-17 13:42:44 +00:00
|
|
|
cmake = attrs.cmake_path,
|
|
|
|
dir = ".",
|
|
|
|
args = build_args,
|
|
|
|
target = target,
|
|
|
|
config = configuration,
|
|
|
|
))
|
|
|
|
|
|
|
|
if ctx.attr.install:
|
|
|
|
# Generate a list of arguments for cmake's install command
|
|
|
|
install_args = " ".join([
|
|
|
|
ctx.expand_location(arg, data)
|
|
|
|
for arg in ctx.attr.install_args
|
|
|
|
])
|
|
|
|
|
|
|
|
cmake_commands.append("{cmake} --install {dir} --config {config} {args}".format(
|
|
|
|
cmake = attrs.cmake_path,
|
|
|
|
dir = ".",
|
|
|
|
args = install_args,
|
|
|
|
config = configuration,
|
|
|
|
))
|
|
|
|
|
2021-03-12 16:54:14 +00:00
|
|
|
configure_script = create_cmake_script(
|
|
|
|
workspace_name = ctx.workspace_name,
|
2021-03-17 13:42:44 +00:00
|
|
|
generator = attrs.generator,
|
|
|
|
cmake_path = attrs.cmake_path,
|
2021-03-12 16:54:14 +00:00
|
|
|
tools = tools,
|
|
|
|
flags = flags,
|
2021-03-26 19:31:07 +00:00
|
|
|
install_prefix = "$$INSTALLDIR$$",
|
2021-03-12 16:54:14 +00:00
|
|
|
root = root,
|
|
|
|
no_toolchain_file = no_toolchain_file,
|
|
|
|
user_cache = dict(ctx.attr.cache_entries),
|
2021-03-17 13:42:44 +00:00
|
|
|
user_env = getattr(ctx.attr, "env_vars", {}),
|
|
|
|
options = attrs.generate_args,
|
|
|
|
cmake_commands = cmake_commands,
|
2021-03-12 16:54:14 +00:00
|
|
|
include_dirs = inputs.include_dirs,
|
|
|
|
is_debug_mode = is_debug_mode(ctx),
|
|
|
|
)
|
2021-03-26 19:31:07 +00:00
|
|
|
return configure_script
|
2021-03-12 16:54:14 +00:00
|
|
|
|
2021-03-17 13:42:44 +00:00
|
|
|
def _get_generator_target(ctx):
|
|
|
|
"""Parse the genrator arguments for a generator declaration
|
|
|
|
|
|
|
|
If none is found, a default will be chosen
|
|
|
|
|
|
|
|
Args:
|
|
|
|
ctx (ctx): The rule's context object
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
tuple: (str, list) the generator and a list of arguments with the generator arg removed
|
|
|
|
"""
|
|
|
|
known_generators = [
|
|
|
|
"Borland Makefiles",
|
|
|
|
"Green Hills MULTI",
|
|
|
|
"MinGW Makefiles",
|
|
|
|
"MSYS Makefiles",
|
|
|
|
"Ninja",
|
|
|
|
"Ninja Multi-Config",
|
|
|
|
"NMake Makefiles JOM",
|
|
|
|
"NMake Makefiles",
|
|
|
|
"Unix Makefiles",
|
|
|
|
"Visual Studio 10 2010",
|
|
|
|
"Visual Studio 11 2012",
|
|
|
|
"Visual Studio 12 2013",
|
|
|
|
"Visual Studio 14 2015",
|
|
|
|
"Visual Studio 15 2017",
|
|
|
|
"Visual Studio 16 2019",
|
|
|
|
"Visual Studio 9 2008",
|
|
|
|
"Watcom WMake",
|
|
|
|
"Xcode",
|
|
|
|
]
|
|
|
|
|
|
|
|
generator = None
|
|
|
|
|
|
|
|
generator_definitions = []
|
|
|
|
generate_args = ctx.attr.generate_args + getattr(ctx.attr, "cmake_options", [])
|
|
|
|
for arg in generate_args:
|
|
|
|
if arg.startswith("-G"):
|
|
|
|
generator_definitions.append(arg)
|
|
|
|
break
|
|
|
|
|
|
|
|
if len(generator_definitions) > 1:
|
|
|
|
fail("Please specify no more than 1 generator argument. Arguments found: {}".format(generator_definitions))
|
|
|
|
|
|
|
|
for definition in generator_definitions:
|
|
|
|
generator = definition[2:]
|
|
|
|
generator = generator.strip(" =\"'")
|
|
|
|
|
|
|
|
# Remove the argument so it's not passed twice to the cmake command
|
|
|
|
# See create_cmake_script for more details
|
|
|
|
generate_args.remove(definition)
|
|
|
|
|
|
|
|
if not generator:
|
|
|
|
execution_os_name = os_name(ctx)
|
|
|
|
if "win" in execution_os_name:
|
|
|
|
generator = "Ninja"
|
|
|
|
elif "macos" in execution_os_name:
|
|
|
|
generator = "Unix Makefiles"
|
|
|
|
elif "linux" in execution_os_name:
|
|
|
|
generator = "Unix Makefiles"
|
|
|
|
else:
|
|
|
|
fail("No generator set and no default is known. Please set the cmake `generator` attribute")
|
|
|
|
|
|
|
|
# Sanity check
|
|
|
|
for gen in known_generators:
|
|
|
|
if generator.startswith(gen):
|
|
|
|
return generator, generate_args
|
|
|
|
|
|
|
|
fail("`{}` is not a known generator".format(generator))
|
|
|
|
|
2021-03-12 16:54:14 +00:00
|
|
|
def _attrs():
|
|
|
|
attrs = dict(CC_EXTERNAL_RULE_ATTRIBUTES)
|
|
|
|
attrs.update({
|
2021-03-17 13:42:44 +00:00
|
|
|
"build_args": attr.string_list(
|
|
|
|
doc = "Arguments for the CMake build command",
|
|
|
|
mandatory = False,
|
|
|
|
),
|
2021-03-12 16:54:14 +00:00
|
|
|
"cache_entries": attr.string_dict(
|
|
|
|
doc = (
|
2021-03-17 13:42:44 +00:00
|
|
|
"CMake cache entries to initialize (they will be passed with `-Dkey=value`) " +
|
2021-03-12 16:54:14 +00:00
|
|
|
"Values, defined by the toolchain, will be joined with the values, passed here. " +
|
|
|
|
"(Toolchain values come first)"
|
|
|
|
),
|
|
|
|
mandatory = False,
|
|
|
|
default = {},
|
|
|
|
),
|
|
|
|
"cmake_options": attr.string_list(
|
2021-03-17 13:42:44 +00:00
|
|
|
doc = "__deprecated__: Use `generate_args`",
|
2021-03-12 16:54:14 +00:00
|
|
|
mandatory = False,
|
|
|
|
default = [],
|
|
|
|
),
|
|
|
|
"env_vars": attr.string_dict(
|
|
|
|
doc = (
|
|
|
|
"CMake environment variable values to join with toolchain-defined. " +
|
2021-03-17 13:42:44 +00:00
|
|
|
"For example, additional `CXXFLAGS`."
|
2021-03-12 16:54:14 +00:00
|
|
|
),
|
|
|
|
mandatory = False,
|
|
|
|
default = {},
|
|
|
|
),
|
2021-03-17 13:42:44 +00:00
|
|
|
"generate_args": attr.string_list(
|
|
|
|
doc = (
|
|
|
|
"Arguments for CMake's generate command. Arguments should be passed as key/value pairs. eg: " +
|
2021-03-17 16:31:04 +00:00
|
|
|
"`[\"-G Ninja\", \"--debug-output\", \"-DFOO=bar\"]`. Note that unless a generator (`-G`) argument " +
|
|
|
|
"is provided, the default generators are [Unix Makefiles](https://cmake.org/cmake/help/latest/generator/Unix%20Makefiles.html) " +
|
|
|
|
"for Linux and MacOS and [Ninja](https://cmake.org/cmake/help/latest/generator/Ninja.html) for " +
|
|
|
|
"Windows."
|
2021-03-17 13:42:44 +00:00
|
|
|
),
|
|
|
|
mandatory = False,
|
|
|
|
default = [],
|
|
|
|
),
|
2021-03-12 16:54:14 +00:00
|
|
|
"generate_crosstool_file": attr.bool(
|
|
|
|
doc = (
|
|
|
|
"When True, CMake crosstool file will be generated from the toolchain values, " +
|
2021-03-17 13:42:44 +00:00
|
|
|
"provided cache-entries and env_vars (some values will still be passed as `-Dkey=value` " +
|
|
|
|
"and environment variables). If `CMAKE_TOOLCHAIN_FILE` cache entry is passed, " +
|
|
|
|
"specified crosstool file will be used When using this option to cross-compile, " +
|
|
|
|
"it is required to specify `CMAKE_SYSTEM_NAME` in the cache_entries"
|
2021-03-12 16:54:14 +00:00
|
|
|
),
|
|
|
|
mandatory = False,
|
|
|
|
default = True,
|
|
|
|
),
|
2021-03-17 13:42:44 +00:00
|
|
|
"install": attr.bool(
|
|
|
|
doc = "If True, the `cmake --install` comand will be performed after a build",
|
|
|
|
default = True,
|
|
|
|
),
|
|
|
|
"install_args": attr.string_list(
|
|
|
|
doc = "Arguments for the CMake install command",
|
|
|
|
mandatory = False,
|
|
|
|
),
|
2021-03-12 16:54:14 +00:00
|
|
|
"install_prefix": attr.string(
|
2021-03-26 19:31:07 +00:00
|
|
|
doc = "__deprecated__: This field is deprecated and is no longer used.",
|
2021-03-17 13:42:44 +00:00
|
|
|
mandatory = False,
|
|
|
|
),
|
|
|
|
"make_commands": attr.string_list(
|
|
|
|
doc = (
|
|
|
|
"__deprecated__: Optional hard coded commands to replace the `cmake --build` commands. It's " +
|
|
|
|
"recommended to leave this empty and use the `targets` + `build_args` attributes."
|
|
|
|
),
|
2021-03-12 16:54:14 +00:00
|
|
|
mandatory = False,
|
|
|
|
),
|
|
|
|
"working_directory": attr.string(
|
|
|
|
doc = (
|
|
|
|
"Working directory, with the main CMakeLists.txt " +
|
|
|
|
"(otherwise, the top directory of the lib_source label files is used.)"
|
|
|
|
),
|
|
|
|
mandatory = False,
|
|
|
|
default = "",
|
|
|
|
),
|
|
|
|
})
|
|
|
|
return attrs
|
|
|
|
|
|
|
|
cmake = rule(
|
|
|
|
doc = "Rule for building external library with CMake.",
|
|
|
|
attrs = _attrs(),
|
|
|
|
fragments = CC_EXTERNAL_RULE_FRAGMENTS,
|
|
|
|
output_to_genfiles = True,
|
|
|
|
implementation = _cmake_impl,
|
|
|
|
toolchains = [
|
|
|
|
"@rules_foreign_cc//toolchains:cmake_toolchain",
|
|
|
|
"@rules_foreign_cc//toolchains:ninja_toolchain",
|
|
|
|
"@rules_foreign_cc//toolchains:make_toolchain",
|
|
|
|
"@rules_foreign_cc//foreign_cc/private/shell_toolchain/toolchains:shell_commands",
|
|
|
|
"@bazel_tools//tools/cpp:toolchain_type",
|
|
|
|
],
|
|
|
|
)
|