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-05-29 19:35:16 +03:00
|
|
|
load("@bazel-zig-cc//toolchain/private:defs.bzl", "DEFAULT_INCLUDE_DIRECTORIES", "target_structs", "zig_tool_path")
|
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-06-02 06:16:39 +03:00
|
|
|
URL_FORMAT_RELEASE = "https://ziglang.org/download/{version}/zig-{host_platform}-{version}.{_ext}"
|
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-06-02 06:16:39 +03:00
|
|
|
URL_FORMAT_NIGHTLY = "https://ziglang.org/builds/zig-{host_platform}-{version}.{_ext}"
|
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-06-02 06:16:39 +03:00
|
|
|
URL_FORMAT_JAKSTYS = "https://dl.jakstys.lt/zig/zig-{host_platform}-{version}.{_ext}"
|
2021-12-07 09:51:14 +02:00
|
|
|
|
2022-09-14 11:54:04 +03:00
|
|
|
_VERSION = "0.10.0-dev.3999+fda6d4477"
|
2021-12-06 08:07:28 +02:00
|
|
|
|
2022-03-18 06:30:38 +02:00
|
|
|
_HOST_PLATFORM_SHA256 = {
|
2022-09-14 11:54:04 +03:00
|
|
|
"linux-aarch64": "18c49fe333b46c29878e3f2f1afe53de1fa361b04b99725be3bb4dd37c3e2dcc",
|
|
|
|
"linux-x86_64": "3c98d3c66359a70d70fd2acebdae6b145996307b5e808ff35526a853f8ea4e95",
|
|
|
|
"macos-aarch64": "43a13b74f6a80fc3dfd73043e4cc9a361f4cae611d1ad810cee46a602d79ee10",
|
|
|
|
"macos-x86_64": "bbea45efaa89c96b1b9965a2fd1817b417ef7e8491898c49034a1fd9c6a7d3fa",
|
|
|
|
"windows-x86_64": "655d1e2a44abd41c6f1058230d703c272c7ee85fdb8296d0262f06dae4cb0075",
|
2022-05-29 19:35:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
_HOST_PLATFORM_EXT = {
|
|
|
|
"linux-aarch64": "tar.xz",
|
|
|
|
"linux-x86_64": "tar.xz",
|
|
|
|
"macos-aarch64": "tar.xz",
|
|
|
|
"macos-x86_64": "tar.xz",
|
|
|
|
"windows-x86_64": "zip",
|
2022-03-18 06:30:38 +02:00
|
|
|
}
|
|
|
|
|
2022-04-13 17:52:25 +03:00
|
|
|
def toolchains(
|
2021-12-06 08:07:28 +02:00
|
|
|
version = _VERSION,
|
2022-05-18 10:42:51 +03:00
|
|
|
url_formats = [URL_FORMAT_NIGHTLY, URL_FORMAT_JAKSTYS],
|
2022-05-29 19:35:16 +03:00
|
|
|
host_platform_sha256 = _HOST_PLATFORM_SHA256,
|
|
|
|
host_platform_ext = _HOST_PLATFORM_EXT):
|
2021-08-11 09:36:20 +03:00
|
|
|
"""
|
2022-04-13 17:52:25 +03:00
|
|
|
Download zig toolchain and declare bazel toolchains.
|
|
|
|
The platforms are not registered automatically, that should be done by
|
|
|
|
the user with register_toolchains() in the WORKSPACE file. See README
|
|
|
|
for possible choices.
|
2021-08-11 09:36:20 +03:00
|
|
|
"""
|
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,
|
2022-05-29 19:35:16 +03:00
|
|
|
host_platform_ext = host_platform_ext,
|
2021-04-10 03:49:14 +03:00
|
|
|
host_platform_include_root = {
|
2022-05-06 10:46:32 +03:00
|
|
|
"linux-aarch64": "lib/zig/",
|
2021-04-10 03:49:14 +03:00
|
|
|
"linux-x86_64": "lib/",
|
2022-09-15 17:37:35 +03:00
|
|
|
"macos-aarch64": "lib/",
|
2021-09-13 08:44:58 +03:00
|
|
|
"macos-x86_64": "lib/zig/",
|
2022-05-29 19:35:16 +03:00
|
|
|
"windows-x86_64": "lib/",
|
2021-06-16 12:44:16 +03:00
|
|
|
},
|
2021-04-10 01:05:01 +03:00
|
|
|
)
|
|
|
|
|
2022-08-29 12:46:33 +03:00
|
|
|
_ZIG_TOOLS = [
|
|
|
|
"c++",
|
|
|
|
"cc",
|
|
|
|
"ar",
|
|
|
|
"ld.lld", # ELF
|
|
|
|
"ld64.lld", # Mach-O
|
|
|
|
"lld-link", # COFF
|
|
|
|
"wasm-ld", # WebAssembly
|
|
|
|
]
|
|
|
|
|
|
|
|
_ZIG_TOOL_WRAPPER_WINDOWS_CACHE_KNOWN = """@echo off
|
|
|
|
set ZIG_LOCAL_CACHE_DIR={cache_prefix}\\bazel-zig-cc
|
|
|
|
set ZIG_GLOBAL_CACHE_DIR=%ZIG_LOCAL_CACHE_DIR%
|
|
|
|
"{zig}" "{zig_tool}" %*
|
|
|
|
"""
|
|
|
|
|
|
|
|
_ZIG_TOOL_WRAPPER_WINDOWS_CACHE_GUESS = """@echo off
|
|
|
|
if exist "%TMP%\\*" goto :usertmp
|
|
|
|
set ZIG_LOCAL_CACHE_DIR=C:\\Temp\\bazel-zig-cc
|
|
|
|
goto zig
|
|
|
|
:usertmp
|
|
|
|
set ZIG_LOCAL_CACHE_DIR=%TMP%\\bazel-zig-cc
|
|
|
|
:zig
|
|
|
|
set ZIG_GLOBAL_CACHE_DIR=%ZIG_LOCAL_CACHE_DIR%
|
|
|
|
"{zig}" "{zig_tool}" %*
|
|
|
|
"""
|
|
|
|
|
2022-08-30 09:19:56 +03:00
|
|
|
_ZIG_TOOL_WRAPPER_CACHE_KNOWN = """#!/bin/sh
|
2022-08-29 14:44:38 +03:00
|
|
|
export ZIG_LOCAL_CACHE_DIR="{cache_prefix}/bazel-zig-cc"
|
|
|
|
export ZIG_GLOBAL_CACHE_DIR="{cache_prefix}/bazel-zig-cc"
|
2022-08-26 10:55:29 +03:00
|
|
|
exec "{zig}" "{zig_tool}" "$@"
|
|
|
|
"""
|
2021-08-05 09:47:34 +03:00
|
|
|
|
2022-08-30 09:19:56 +03:00
|
|
|
_ZIG_TOOL_WRAPPER_CACHE_GUESS = """#!/bin/sh
|
2022-08-26 10:55:29 +03:00
|
|
|
set -e
|
|
|
|
if [ -n "$TMPDIR" ]; then
|
2022-08-12 09:25:37 +03:00
|
|
|
_cache_prefix=$TMPDIR
|
2022-08-26 10:55:29 +03:00
|
|
|
elif [ -n "$HOME" ]; then
|
|
|
|
if [ "$(uname)" = Darwin ]; then
|
2022-08-12 09:25:37 +03:00
|
|
|
_cache_prefix="$HOME/Library/Caches"
|
|
|
|
else
|
|
|
|
_cache_prefix="$HOME/.cache"
|
|
|
|
fi
|
2021-06-10 09:10:48 +03:00
|
|
|
else
|
2022-08-12 09:25:37 +03:00
|
|
|
_cache_prefix=/tmp
|
2021-06-10 09:10:48 +03:00
|
|
|
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
|
2022-05-05 14:36:36 +03:00
|
|
|
exec "{zig}" "{zig_tool}" "$@"
|
2021-04-10 03:49:14 +03:00
|
|
|
"""
|
|
|
|
|
2022-08-29 12:46:33 +03:00
|
|
|
def _zig_tool_wrapper(zig_tool, zig, is_windows, cache_prefix):
|
|
|
|
kwargs = dict(
|
|
|
|
zig = str(zig).replace("/", "\\") + ".exe" if is_windows else zig,
|
|
|
|
zig_tool = zig_tool,
|
|
|
|
cache_prefix = cache_prefix,
|
|
|
|
)
|
2022-05-29 19:35:16 +03:00
|
|
|
|
2022-08-29 12:46:33 +03:00
|
|
|
if is_windows:
|
|
|
|
if cache_prefix:
|
|
|
|
return _ZIG_TOOL_WRAPPER_WINDOWS_CACHE_KNOWN.format(**kwargs)
|
|
|
|
else:
|
|
|
|
return _ZIG_TOOL_WRAPPER_WINDOWS_CACHE_GUESS.format(**kwargs)
|
|
|
|
elif cache_prefix:
|
|
|
|
return _ZIG_TOOL_WRAPPER_CACHE_KNOWN.format(**kwargs)
|
|
|
|
else:
|
|
|
|
return _ZIG_TOOL_WRAPPER_CACHE_GUESS.format(**kwargs)
|
2021-04-10 03:49:14 +03:00
|
|
|
|
2022-04-13 17:52:25 +03:00
|
|
|
def _quote(s):
|
|
|
|
return "'" + s.replace("'", "'\\''") + "'"
|
|
|
|
|
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-05-29 19:35:16 +03:00
|
|
|
if os.startswith("windows"):
|
|
|
|
os = "windows"
|
|
|
|
|
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]
|
2022-05-29 19:35:16 +03:00
|
|
|
zig_ext = repository_ctx.attr.host_platform_ext[host_platform]
|
2021-04-10 01:05:01 +03:00
|
|
|
format_vars = {
|
2022-06-02 06:16:39 +03:00
|
|
|
"_ext": zig_ext,
|
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-09-15 21:20:21 +03:00
|
|
|
# Fetch Label dependencies before doing download/extract.
|
|
|
|
# The Bazel docs are not very clear about this behavior but see:
|
|
|
|
# https://bazel.build/extending/repo#when_is_the_implementation_function_executed
|
|
|
|
# and a related rules_go PR:
|
|
|
|
# https://github.com/bazelbuild/bazel-gazelle/pull/1206
|
|
|
|
for dest, src in {
|
|
|
|
"platform/BUILD": "//toolchain/platform:BUILD",
|
|
|
|
"toolchain/BUILD": "//toolchain/toolchain:BUILD",
|
|
|
|
"libc/BUILD": "//toolchain/libc:BUILD",
|
|
|
|
"libc_aware/platform/BUILD": "//toolchain/libc_aware/platform:BUILD",
|
|
|
|
"libc_aware/toolchain/BUILD": "//toolchain/libc_aware/toolchain:BUILD",
|
|
|
|
}.items():
|
|
|
|
repository_ctx.symlink(Label(src), dest)
|
|
|
|
|
|
|
|
for dest, src in {
|
|
|
|
"BUILD": "//toolchain:BUILD.sdk.bazel",
|
|
|
|
"private/BUILD": "//toolchain/private:BUILD.sdk.bazel",
|
|
|
|
}.items():
|
|
|
|
repository_ctx.template(
|
|
|
|
dest,
|
|
|
|
Label(src),
|
|
|
|
executable = False,
|
|
|
|
substitutions = {
|
|
|
|
"{absolute_path}": _quote(str(repository_ctx.path(""))),
|
|
|
|
"{os}": _quote(os),
|
|
|
|
"{zig_include_root}": _quote(zig_include_root),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
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:
|
2022-08-29 12:46:33 +03:00
|
|
|
zig_tool_wrapper = _zig_tool_wrapper(
|
|
|
|
zig_tool,
|
|
|
|
str(repository_ctx.path("zig")),
|
|
|
|
os == "windows",
|
|
|
|
repository_ctx.os.environ.get("BAZEL_ZIG_CC_CACHE_PREFIX", ""),
|
|
|
|
)
|
2022-05-29 19:35:16 +03:00
|
|
|
|
|
|
|
repository_ctx.file(
|
|
|
|
zig_tool_path(os).format(zig_tool = zig_tool),
|
|
|
|
zig_tool_wrapper,
|
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,
|
|
|
|
)
|
|
|
|
|
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(),
|
2022-05-29 19:35:16 +03:00
|
|
|
"host_platform_ext": attr.string_dict(),
|
2021-04-10 01:05:01 +03:00
|
|
|
},
|
2022-09-12 13:46:07 +03:00
|
|
|
environ = ["BAZEL_ZIG_CC_CACHE_PREFIX"],
|
2021-04-10 01:05:01 +03:00
|
|
|
implementation = _zig_repository_impl,
|
|
|
|
)
|
|
|
|
|
|
|
|
def filegroup(name, **kwargs):
|
|
|
|
native.filegroup(name = name, **kwargs)
|
|
|
|
return ":" + name
|
|
|
|
|
2022-05-29 19:35:16 +03:00
|
|
|
def declare_files(os, zig_include_root):
|
2021-06-16 12:44:16 +03:00
|
|
|
filegroup(name = "empty")
|
2022-05-29 19:35:16 +03:00
|
|
|
if os == "windows":
|
|
|
|
native.exports_files(["zig.exe"], visibility = ["//visibility:public"])
|
|
|
|
native.alias(name = "zig", actual = ":zig.exe")
|
|
|
|
else:
|
|
|
|
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 + "/**"]))
|