2021-07-12 09:45:23 +03:00
|
|
|
load("@bazel_skylib//lib:shell.bzl", "shell")
|
2021-04-10 01:05:01 +03:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
2022-03-25 17:46:59 +02:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "read_user_netrc", "use_netrc")
|
2022-04-06 23:10:45 +03:00
|
|
|
load("@bazel-zig-cc//toolchain/private:defs.bzl", "DEFAULT_INCLUDE_DIRECTORIES", "ZIG_TOOL_PATH", "target_structs")
|
2021-04-10 01:05:01 +03:00
|
|
|
|
2021-07-28 23:42:28 +03:00
|
|
|
_fcntl_map = """
|
|
|
|
GLIBC_2.2.5 {
|
|
|
|
fcntl;
|
|
|
|
};
|
|
|
|
"""
|
2021-08-06 09:43:18 +03:00
|
|
|
_fcntl_h = """
|
|
|
|
#ifdef __ASSEMBLER__
|
|
|
|
.symver fcntl64, fcntl@GLIBC_2.2.5
|
|
|
|
#else
|
|
|
|
__asm__(".symver fcntl64, fcntl@GLIBC_2.2.5");
|
|
|
|
#endif
|
|
|
|
"""
|
2021-07-28 23:42:28 +03:00
|
|
|
|
2022-01-25 11:05:35 +02:00
|
|
|
# Official recommended version. Should use this when we have a usable release.
|
2022-03-18 06:44:22 +02:00
|
|
|
URL_FORMAT_RELEASE = "https://ziglang.org/download/{version}/zig-{host_platform}-{version}.tar.xz"
|
2022-01-25 11:05:35 +02:00
|
|
|
|
|
|
|
# Caution: nightly releases are purged from ziglang.org after ~90 days. A real
|
|
|
|
# solution would be to allow the downstream project specify their own mirrors.
|
|
|
|
# This is explained in
|
|
|
|
# https://sr.ht/~motiejus/bazel-zig-cc/#alternative-download-urls and is
|
|
|
|
# awaiting my attention or your contribution.
|
2022-03-18 06:44:22 +02:00
|
|
|
URL_FORMAT_NIGHTLY = "https://ziglang.org/builds/zig-{host_platform}-{version}.tar.xz"
|
2022-01-25 11:05:35 +02:00
|
|
|
|
|
|
|
# Author's mirror that doesn't purge the nightlies so aggressively. I will be
|
|
|
|
# cleaning those up manually only after the artifacts are not in use for many
|
2022-01-25 11:19:52 +02:00
|
|
|
# months in bazel-zig-cc. dl.jakstys.lt is a small x86_64 server with an NVMe
|
|
|
|
# drive sitting in my home closet on a 1GB/s symmetric residential connection,
|
|
|
|
# which, as of writing, has been quite reliable.
|
2022-03-18 06:44:22 +02:00
|
|
|
URL_FORMAT_JAKSTYS = "https://dl.jakstys.lt/zig/zig-{host_platform}-{version}.tar.xz"
|
2021-12-07 09:51:14 +02:00
|
|
|
|
2022-03-18 06:47:26 +02:00
|
|
|
_VERSION = "0.10.0-dev.1393+291f5055f"
|
2021-12-06 08:07:28 +02:00
|
|
|
|
2022-03-18 06:30:38 +02:00
|
|
|
_HOST_PLATFORM_SHA256 = {
|
2022-03-18 06:47:26 +02:00
|
|
|
"linux-aarch64": "10c6618f57f6253c047098aee4093fe36e7fc4da7f0ed2451cca91e8b84575b8",
|
|
|
|
"linux-x86_64": "de30008c98ba61791ab5caa78ec9fbe20c76f8e57c7a41e1cf5788d8f59b4c7e",
|
|
|
|
"macos-aarch64": "72edc26973d697bba68f138701ebf9755548677ecedd853fd224baa836bef2f8",
|
|
|
|
"macos-x86_64": "78220a4460a7c0f563d7365313fcd3ea028ed38166ebac55ba22f17ab6404851",
|
2022-03-18 06:30:38 +02:00
|
|
|
}
|
|
|
|
|
2021-12-06 08:07:28 +02:00
|
|
|
def register_toolchains(
|
|
|
|
register = [],
|
|
|
|
version = _VERSION,
|
2022-03-18 06:44:22 +02:00
|
|
|
url_formats = [URL_FORMAT_JAKSTYS],
|
2022-03-18 06:30:38 +02:00
|
|
|
host_platform_sha256 = _HOST_PLATFORM_SHA256):
|
2021-08-11 09:36:20 +03:00
|
|
|
"""
|
|
|
|
Download zig toolchain and register some.
|
|
|
|
@param register registers the given toolchains to the system using
|
|
|
|
native.register_toolchains(). See README for possible choices.
|
|
|
|
"""
|
2021-04-10 01:05:01 +03:00
|
|
|
zig_repository(
|
2021-06-10 09:34:59 +03:00
|
|
|
name = "zig_sdk",
|
2021-12-06 08:07:28 +02:00
|
|
|
version = version,
|
2022-03-18 06:44:22 +02:00
|
|
|
url_formats = url_formats,
|
2022-03-18 06:30:38 +02:00
|
|
|
host_platform_sha256 = host_platform_sha256,
|
2021-04-10 03:49:14 +03:00
|
|
|
host_platform_include_root = {
|
2021-09-13 08:44:58 +03:00
|
|
|
"linux-aarch64": "lib/",
|
2021-04-10 03:49:14 +03:00
|
|
|
"linux-x86_64": "lib/",
|
2021-09-13 08:44:58 +03:00
|
|
|
"macos-aarch64": "lib/zig/",
|
|
|
|
"macos-x86_64": "lib/zig/",
|
2021-06-16 12:44:16 +03:00
|
|
|
},
|
2021-04-10 01:05:01 +03:00
|
|
|
)
|
|
|
|
|
2022-04-06 22:46:15 +03:00
|
|
|
toolchains = ["@zig_sdk//:toolchain:%s" % t for t in register]
|
2021-08-05 09:47:34 +03:00
|
|
|
native.register_toolchains(*toolchains)
|
2021-04-10 01:05:01 +03:00
|
|
|
|
2021-04-10 03:49:14 +03:00
|
|
|
ZIG_TOOL_WRAPPER = """#!/bin/bash
|
2021-08-06 11:23:39 +03:00
|
|
|
set -e
|
2021-08-05 09:47:34 +03:00
|
|
|
|
2021-08-06 11:32:21 +03:00
|
|
|
if [[ -n "$TMPDIR" ]]; then
|
2021-08-05 09:47:34 +03:00
|
|
|
_cache_prefix=$TMPDIR
|
2021-06-10 09:10:48 +03:00
|
|
|
else
|
2021-08-05 09:47:34 +03:00
|
|
|
_cache_prefix="$HOME/.cache"
|
2021-06-10 09:10:48 +03:00
|
|
|
if [[ "$(uname)" = Darwin ]]; then
|
2021-08-05 09:47:34 +03:00
|
|
|
_cache_prefix="$HOME/Library/Caches"
|
2021-06-10 09:10:48 +03:00
|
|
|
fi
|
|
|
|
fi
|
2021-08-05 09:47:34 +03:00
|
|
|
export ZIG_LOCAL_CACHE_DIR="$_cache_prefix/bazel-zig-cc"
|
2021-06-10 09:10:48 +03:00
|
|
|
export ZIG_GLOBAL_CACHE_DIR=$ZIG_LOCAL_CACHE_DIR
|
2021-08-04 15:16:18 +03:00
|
|
|
|
2021-12-06 07:53:22 +02:00
|
|
|
exec "{zig}" "{zig_tool}" "$@"
|
2021-04-10 03:49:14 +03:00
|
|
|
"""
|
|
|
|
|
2021-08-04 15:04:14 +03:00
|
|
|
_ZIG_TOOLS = [
|
2021-04-10 03:49:14 +03:00
|
|
|
"c++",
|
|
|
|
"cc",
|
2021-06-03 17:09:50 +03:00
|
|
|
"ar",
|
2021-06-16 12:44:16 +03:00
|
|
|
"ld.lld", # ELF
|
|
|
|
"ld64.lld", # Mach-O
|
|
|
|
"lld-link", # COFF
|
|
|
|
"wasm-ld", # WebAssembly
|
2021-04-10 03:49:14 +03:00
|
|
|
]
|
|
|
|
|
2021-04-10 01:05:01 +03:00
|
|
|
def _zig_repository_impl(repository_ctx):
|
2022-03-25 17:46:11 +02:00
|
|
|
arch = repository_ctx.os.arch
|
|
|
|
if arch == "amd64":
|
|
|
|
arch = "x86_64"
|
2021-09-13 08:44:58 +03:00
|
|
|
|
2022-03-25 17:46:11 +02:00
|
|
|
os = repository_ctx.os.name.lower()
|
|
|
|
if os.startswith("mac os"):
|
2022-02-11 01:22:37 +02:00
|
|
|
os = "macos"
|
2022-03-25 17:46:11 +02:00
|
|
|
|
2022-02-11 01:22:37 +02:00
|
|
|
host_platform = "{}-{}".format(os, arch)
|
2021-04-10 01:05:01 +03:00
|
|
|
|
2021-04-10 03:49:14 +03:00
|
|
|
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
|
|
|
}
|
2022-03-18 06:30:42 +02:00
|
|
|
|
2022-03-18 07:04:49 +02:00
|
|
|
urls = [uf.format(**format_vars) for uf in repository_ctx.attr.url_formats]
|
2021-04-10 01:05:01 +03:00
|
|
|
repository_ctx.download_and_extract(
|
2022-03-25 17:46:59 +02:00
|
|
|
auth = use_netrc(read_user_netrc(repository_ctx), urls, {}),
|
2022-03-18 07:04:49 +02:00
|
|
|
url = urls,
|
2021-04-10 01:05:01 +03:00
|
|
|
stripPrefix = "zig-{host_platform}-{version}/".format(**format_vars),
|
2021-04-10 03:49:14 +03:00
|
|
|
sha256 = zig_sha256,
|
2021-04-10 01:05:01 +03:00
|
|
|
)
|
|
|
|
|
2021-08-04 15:04:14 +03:00
|
|
|
for zig_tool in _ZIG_TOOLS:
|
2021-04-10 01:05:01 +03:00
|
|
|
repository_ctx.file(
|
2021-06-16 12:44:16 +03:00
|
|
|
ZIG_TOOL_PATH.format(zig_tool = zig_tool),
|
2021-08-04 19:46:21 +03:00
|
|
|
ZIG_TOOL_WRAPPER.format(
|
|
|
|
zig = str(repository_ctx.path("zig")),
|
|
|
|
zig_tool = zig_tool,
|
|
|
|
),
|
2021-04-10 01:05:01 +03:00
|
|
|
)
|
|
|
|
|
2021-07-28 23:42:28 +03:00
|
|
|
repository_ctx.file(
|
|
|
|
"glibc-hacks/fcntl.map",
|
|
|
|
content = _fcntl_map,
|
|
|
|
)
|
|
|
|
repository_ctx.file(
|
2021-08-04 15:04:14 +03:00
|
|
|
"glibc-hacks/glibchack-fcntl.h",
|
2021-07-28 23:42:28 +03:00
|
|
|
content = _fcntl_h,
|
|
|
|
)
|
|
|
|
|
2022-04-06 22:16:53 +03:00
|
|
|
repository_ctx.symlink(
|
|
|
|
Label("//toolchain/platform:BUILD"),
|
|
|
|
"platform/BUILD",
|
|
|
|
)
|
2022-04-07 13:15:34 +03:00
|
|
|
|
2021-06-10 09:42:26 +03:00
|
|
|
repository_ctx.template(
|
2022-04-06 22:46:15 +03:00
|
|
|
"BUILD",
|
2021-06-10 09:42:26 +03:00
|
|
|
Label("//toolchain:BUILD.sdk.bazel"),
|
|
|
|
executable = False,
|
2022-04-06 22:46:15 +03:00
|
|
|
substitutions = {
|
|
|
|
"{zig_include_root}": shell.quote(zig_include_root),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2022-04-07 13:15:34 +03:00
|
|
|
repository_ctx.symlink(
|
|
|
|
Label("//toolchain/toolchain:BUILD"),
|
2022-04-06 22:46:15 +03:00
|
|
|
"toolchain/BUILD",
|
2022-04-07 13:15:34 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
repository_ctx.template(
|
|
|
|
"private/BUILD",
|
|
|
|
Label("//toolchain/private:BUILD.sdk.bazel"),
|
2022-04-06 22:46:15 +03:00
|
|
|
executable = False,
|
2021-06-10 09:42:26 +03:00
|
|
|
substitutions = {
|
2021-07-12 09:45:23 +03:00
|
|
|
"{absolute_path}": shell.quote(str(repository_ctx.path(""))),
|
|
|
|
"{zig_include_root}": shell.quote(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(),
|
2022-03-18 06:44:22 +02:00
|
|
|
"url_formats": attr.string_list(allow_empty = False),
|
2021-04-10 03:49:14 +03:00
|
|
|
"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
|
|
|
|
|
2022-04-06 22:46:15 +03:00
|
|
|
def declare_files(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 = {}
|
|
|
|
|
2022-04-06 23:10:45 +03:00
|
|
|
for target_config in target_structs():
|
2022-04-06 22:46:15 +03:00
|
|
|
for d in DEFAULT_INCLUDE_DIRECTORIES + target_config.includes:
|
|
|
|
d = zig_include_root + d
|
|
|
|
if d not in lazy_filegroups:
|
|
|
|
lazy_filegroups[d] = filegroup(name = d, srcs = native.glob([d + "/**"]))
|