1
Fork 0
hermetic_cc_toolchain/toolchain/defs.bzl

264 lines
8.7 KiB
Python
Raw Normal View History

2021-04-10 01:05:01 +03:00
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load(":zig_toolchain.bzl", "zig_cc_toolchain_config")
DEFAULT_TOOL_PATHS = {
2021-06-03 20:09:04 +03:00
"ar": "ar",
2021-06-16 12:44:16 +03:00
"gcc": "c++", # https://github.com/bazelbuild/bazel/issues/4644
2021-06-03 17:08:47 +03:00
"cpp": "/usr/bin/false",
2021-04-10 01:05:01 +03:00
"gcov": "/usr/bin/false",
"nm": "/usr/bin/false",
"objdump": "/usr/bin/false",
"strip": "/usr/bin/false",
}.items()
DEFAULT_INCLUDE_DIRECTORIES = [
"include",
2021-06-03 20:09:04 +03:00
"libcxx/include",
"libcxxabi/include",
2021-04-10 01:05:01 +03:00
]
# https://github.com/ziglang/zig/blob/0cfa39304b18c6a04689bd789f5dc4d035ec43b0/src/main.zig#L2962-L2966
2021-06-10 13:34:58 +03:00
TARGET_CONFIGS_LISTOFLISTS = [[
2021-04-10 02:58:05 +03:00
struct(
2021-06-16 12:44:16 +03:00
target = "{}-macos-gnu".format(cpu),
includes = [
"libunwind/include",
"libc/include/any-macos-any",
2021-06-10 13:34:58 +03:00
"libc/include/{}-macos-any".format(cpu),
"libc/include/{}-macos-gnu".format(cpu),
2021-04-10 02:58:05 +03:00
],
2021-06-16 12:44:16 +03:00
linkopts = [],
copts = [],
bazel_target_cpu = "darwin",
constraint_values = [
2021-06-08 06:56:37 +03:00
"@platforms//os:macos",
2021-06-10 13:34:58 +03:00
"@platforms//cpu:{}".format(cpu),
2021-06-08 06:56:37 +03:00
],
2021-06-16 12:44:16 +03:00
tool_paths = {"ld": "ld64.lld"},
2021-04-10 02:58:05 +03:00
),
2021-06-03 20:09:04 +03:00
struct(
2021-06-16 12:44:16 +03:00
target = "{}-linux-gnu".format(cpu),
target_suffix = ".2.19",
2021-06-16 12:44:16 +03:00
includes = [
2021-06-03 20:09:04 +03:00
"libunwind/include",
"libc/include/generic-glibc",
"libc/include/any-linux-any",
2021-06-10 13:34:58 +03:00
"libc/include/{}-linux-gnu".format(cpu),
"libc/include/{}-linux-any".format(cpu),
2021-06-03 20:09:04 +03:00
],
2021-06-16 12:44:16 +03:00
linkopts = ["-lc++", "-lc++abi"],
copts = [],
bazel_target_cpu = "k8",
constraint_values = [
2021-06-03 20:09:04 +03:00
"@platforms//os:linux",
2021-06-10 13:34:58 +03:00
"@platforms//cpu:{}".format(cpu),
2021-06-03 20:09:04 +03:00
],
2021-06-16 12:44:16 +03:00
tool_paths = {"ld": "ld.lld"},
2021-06-03 20:09:04 +03:00
),
2021-04-10 01:05:01 +03:00
struct(
2021-06-16 12:44:16 +03:00
target = "{}-linux-musl".format(cpu),
includes = [
2021-06-03 17:49:00 +03:00
"libc/include/generic-musl",
"libc/include/any-linux-any",
2021-06-10 13:34:58 +03:00
"libc/include/{}-linux-musl".format(cpu),
"libc/include/{}-linux-any".format(cpu),
2021-04-10 01:05:01 +03:00
],
2021-06-16 12:44:16 +03:00
linkopts = ["-s", "-w"],
copts = ["-D_LIBCPP_HAS_MUSL_LIBC", "-D_LIBCPP_HAS_THREAD_API_PTHREAD"],
bazel_target_cpu = "k8",
constraint_values = [
2021-06-03 20:09:04 +03:00
"@platforms//os:linux",
2021-06-10 13:34:58 +03:00
"@platforms//cpu:{}".format(cpu),
2021-06-03 20:09:04 +03:00
],
2021-06-16 12:44:16 +03:00
tool_paths = {"ld": "ld.lld"},
skip_register = True,
2021-04-10 01:05:01 +03:00
),
2021-06-10 13:34:58 +03:00
] for cpu in ("x86_64", "aarch64")]
TARGET_CONFIGS = [val for sublist in TARGET_CONFIGS_LISTOFLISTS for val in sublist]
2021-04-10 01:05:01 +03:00
def toolchain_repositories():
zig_repository(
name = "zig_sdk",
2021-06-10 13:34:58 +03:00
# Pre-release:
2021-07-02 12:32:50 +03:00
version = "0.9.0-dev.347+628f490c5",
url_format = "https://ziglang.org/builds/zig-{host_platform}-{version}.tar.xz",
# Release:
# version = "0.8.0",
# url_format = "https://ziglang.org/download/{version}/zig-{host_platform}-{version}.tar.xz",
2021-04-10 02:58:05 +03:00
host_platform_sha256 = {
2021-07-02 12:32:50 +03:00
"linux-x86_64": "163b2bdaf5464fcb94033c35737ec7c463bee4509e6970f19cfddb5bd90b2471",
"macos-x86_64": "aa17c52c260b09328df8efd9b44f9197320a3d7b4d5c7025a715fc8ffe23ca35",
2021-04-10 02:58:05 +03:00
},
host_platform_include_root = {
"macos-x86_64": "lib/zig/",
"linux-x86_64": "lib/",
2021-06-16 12:44:16 +03:00
},
2021-04-10 01:05:01 +03:00
)
def register_all_toolchains():
for target_config in TARGET_CONFIGS:
if not getattr(target_config, "skip_register", False):
native.register_toolchains(
"@zig_sdk//:%s_toolchain" % target_config.target,
)
2021-04-10 01:05:01 +03:00
ZIG_TOOL_PATH = "tools/{zig_tool}"
ZIG_TOOL_WRAPPER = """#!/bin/bash
2021-06-10 09:10:48 +03:00
if [[ -n "$TMPDIR" ]]; then
cache_prefix=$TMPDIR
else
cache_prefix="$HOME/.cache"
if [[ "$(uname)" = Darwin ]]; then
cache_prefix="$HOME/Library/Caches"
fi
fi
export ZIG_LOCAL_CACHE_DIR="$cache_prefix/bazel-zig-cc"
export ZIG_GLOBAL_CACHE_DIR=$ZIG_LOCAL_CACHE_DIR
exec "{zig}" "{zig_tool}" "$@"
"""
ZIG_TOOLS = [
"c++",
"cc",
2021-06-03 17:09:50 +03:00
"ar",
# List of ld tools: https://github.com/ziglang/zig/blob/0cfa39304b18c6a04689bd789f5dc4d035ec43b0/src/main.zig#L2962-L2966
# and also: https://github.com/ziglang/zig/issues/3257
2021-06-16 12:44:16 +03:00
"ld.lld", # ELF
"ld64.lld", # Mach-O
"lld-link", # COFF
"wasm-ld", # WebAssembly
]
2021-04-10 01:05:01 +03:00
def _zig_repository_impl(repository_ctx):
if repository_ctx.os.name.lower().startswith("mac os"):
host_platform = "macos-x86_64"
else:
host_platform = "linux-x86_64"
zig_include_root = repository_ctx.attr.host_platform_include_root[host_platform]
zig_sha256 = repository_ctx.attr.host_platform_sha256[host_platform]
2021-04-10 01:05:01 +03:00
format_vars = {
2021-06-16 12:44:16 +03:00
"version": repository_ctx.attr.version,
"host_platform": host_platform,
2021-04-10 01:05:01 +03:00
}
zig_url = repository_ctx.attr.url_format.format(**format_vars)
2021-04-10 01:05:01 +03:00
repository_ctx.download_and_extract(
url = zig_url,
2021-04-10 01:05:01 +03:00
stripPrefix = "zig-{host_platform}-{version}/".format(**format_vars),
sha256 = zig_sha256,
2021-04-10 01:05:01 +03:00
)
for zig_tool in ZIG_TOOLS:
repository_ctx.file(
2021-06-16 12:44:16 +03:00
ZIG_TOOL_PATH.format(zig_tool = zig_tool),
ZIG_TOOL_WRAPPER.format(zig = str(repository_ctx.path("zig")), zig_tool = zig_tool),
2021-04-10 01:05:01 +03:00
)
2021-06-10 09:42:26 +03:00
repository_ctx.template(
"BUILD.bazel",
Label("//toolchain:BUILD.sdk.bazel"),
executable = False,
substitutions = {
"{absolute_path}": str(repository_ctx.path("")),
"{zig_include_root}": zig_include_root,
2021-06-10 09:42:26 +03:00
},
2021-04-10 01:05:01 +03:00
)
zig_repository = repository_rule(
attrs = {
"version": attr.string(),
2021-04-10 02:58:05 +03:00
"host_platform_sha256": attr.string_dict(),
"url_format": attr.string(),
"host_platform_include_root": attr.string_dict(),
2021-04-10 01:05:01 +03:00
},
implementation = _zig_repository_impl,
)
def filegroup(name, **kwargs):
native.filegroup(name = name, **kwargs)
return ":" + name
def zig_build_macro(absolute_path, zig_include_root):
2021-06-16 12:44:16 +03:00
filegroup(name = "empty")
2021-06-28 13:57:47 +03:00
native.exports_files(["zig"], visibility = ["//visibility:public"])
2021-06-16 12:44:16 +03:00
filegroup(name = "lib/std", srcs = native.glob(["lib/std/**"]))
2021-04-10 01:05:01 +03:00
lazy_filegroups = {}
for target_config in TARGET_CONFIGS:
target = target_config.target
native.platform(
name = target,
constraint_values = target_config.constraint_values,
)
2021-04-10 01:05:01 +03:00
2021-06-28 13:57:47 +03:00
compiler_srcs = [":zig"]
tool_srcs = {tool: [":zig"] for tool in ["gcc", "ld", "ar"]}
2021-06-10 13:12:54 +03:00
2021-04-10 01:05:01 +03:00
cxx_builtin_include_directories = []
for d in DEFAULT_INCLUDE_DIRECTORIES + target_config.includes:
d = zig_include_root + d
2021-04-10 01:05:01 +03:00
if d not in lazy_filegroups:
2021-06-16 12:44:16 +03:00
lazy_filegroups[d] = filegroup(name = d, srcs = native.glob([d + "/**"]))
2021-04-10 01:05:01 +03:00
compiler_srcs.append(lazy_filegroups[d])
cxx_builtin_include_directories.append(absolute_path + "/" + d)
absolute_tool_paths = {}
for name, path in target_config.tool_paths.items() + DEFAULT_TOOL_PATHS:
if path[0] == "/":
absolute_tool_paths[name] = path
continue
2021-06-16 12:44:16 +03:00
tool_path = ZIG_TOOL_PATH.format(zig_tool = path)
2021-04-10 01:05:01 +03:00
absolute_tool_paths[name] = "%s/%s" % (absolute_path, tool_path)
tool_srcs[name].append(tool_path)
2021-06-20 15:15:21 +03:00
2021-04-10 01:05:01 +03:00
zig_cc_toolchain_config(
name = target + "_cc_toolchain_config",
target = target,
2021-06-16 12:44:16 +03:00
target_suffix = getattr(target_config, "target_suffix", ""),
2021-04-10 01:05:01 +03:00
tool_paths = absolute_tool_paths,
cxx_builtin_include_directories = cxx_builtin_include_directories,
copts = target_config.copts,
linkopts = target_config.linkopts,
target_system_name = "unknown",
2021-04-10 02:58:05 +03:00
target_cpu = target_config.bazel_target_cpu,
2021-04-10 01:05:01 +03:00
target_libc = "unknown",
compiler = "clang",
abi_version = "unknown",
abi_libc_version = "unknown",
)
native.cc_toolchain(
name = target + "_cc_toolchain",
toolchain_identifier = target + "-toolchain",
toolchain_config = ":%s_cc_toolchain_config" % target,
2021-06-28 13:57:47 +03:00
all_files = ":zig",
ar_files = ":zig",
compiler_files = ":zig",
linker_files = ":zig",
2021-04-10 01:05:01 +03:00
dwp_files = ":empty",
objcopy_files = ":empty",
strip_files = ":empty",
supports_param_files = 0,
)
native.cc_toolchain_suite(
name = target + "_cc_toolchain_suite",
toolchains = {
2021-04-10 02:58:05 +03:00
target_config.bazel_target_cpu: ":%s_cc_toolchain" % target,
2021-04-10 01:05:01 +03:00
},
2021-06-16 12:44:16 +03:00
tags = ["manual"],
2021-04-10 01:05:01 +03:00
)
native.toolchain(
name = target + "_toolchain",
exec_compatible_with = None,
target_compatible_with = target_config.constraint_values,
toolchain = ":%s_cc_toolchain" % target,
toolchain_type = "@bazel_tools//tools/cpp:toolchain_type",
)