You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.0 KiB
63 lines
2.0 KiB
# Rules and macros to define a cc toolchain with a static libc.
|
|
# Used to bootstrap cc development using the bionic lib build by Soong.
|
|
# Rule: _libc_config
|
|
# Provides information needed by CcToolchainConfigInfo to configure the cc_toolchain properly.
|
|
# Macro: static_libc
|
|
# Creates the libc_config target and filegroups needed by cc_toolchain.
|
|
LibcConfigInfo = provider(fields = ["include_dirs", "system_libraries"])
|
|
def _libc_config_impl(ctx):
|
|
include_dirs = ctx.attr.include_dirs
|
|
system_libraries = [file.path for file in ctx.files.system_libraries]
|
|
provider = LibcConfigInfo(
|
|
include_dirs = include_dirs,
|
|
system_libraries = system_libraries,
|
|
)
|
|
return [provider]
|
|
_libc_config = rule(
|
|
implementation = _libc_config_impl,
|
|
attrs = {
|
|
"include_dirs": attr.string_list(default = []),
|
|
"system_libraries": attr.label_list(default = [], allow_files = True),
|
|
},
|
|
)
|
|
def static_libc(
|
|
name,
|
|
include_dirs = {},
|
|
system_libraries = []):
|
|
# Create the filegroups
|
|
include_srcs = []
|
|
include_globs = []
|
|
for value in include_dirs.values():
|
|
if "*" in value:
|
|
# It must be a glob.
|
|
include_globs.append(value)
|
|
else:
|
|
# Assume it's a label.
|
|
include_srcs.append(value)
|
|
native.filegroup(
|
|
name = "%s_includes" % name,
|
|
srcs = include_srcs + native.glob(include_globs),
|
|
)
|
|
native.filegroup(
|
|
name = "%s_system_libraries" % name,
|
|
srcs = system_libraries,
|
|
)
|
|
# Create the libc config.
|
|
include_paths = [path for path in include_dirs.keys()]
|
|
_libc_config(
|
|
name = name,
|
|
include_dirs = include_paths,
|
|
system_libraries = system_libraries,
|
|
)
|
|
# Also create cc_library target for direct dependencies.
|
|
native.cc_library(
|
|
name = "%s_library" % name,
|
|
hdrs = [
|
|
":%s_includes" % name,
|
|
],
|
|
includes = include_paths,
|
|
srcs = [
|
|
":%s_system_libraries" % name,
|
|
],
|
|
)
|