2021-10-20 20:20:42 +00:00
|
|
|
"""
|
2022-04-01 12:29:11 +00:00
|
|
|
This file assembles a toolchain for an amd64 Linux host using the Clang Compiler and glibc.
|
|
|
|
|
|
|
|
It downloads the necessary headers, executables, and pre-compiled static/shared libraries to
|
|
|
|
the external subfolder of the Bazel cache (the same place third party deps are downloaded with
|
|
|
|
http_archive or similar functions in WORKSPACE.bazel). These will be able to be used via our
|
2022-05-04 15:06:39 +00:00
|
|
|
custom c++ toolchain configuration (see //toolchain/linux_amd64_toolchain_config.bzl)
|
2022-04-01 12:29:11 +00:00
|
|
|
|
|
|
|
Most files are downloaded as .deb files from packages.debian.org (with us acting as the dependency
|
|
|
|
resolver) and extracted to
|
|
|
|
[outputRoot (aka Bazel cache)]/[outputUserRoot]/[outputBase]/external/clang_linux_amd64
|
|
|
|
(See https://bazel.build/docs/output_directories#layout-diagram)
|
|
|
|
which will act as our sysroot.
|
2021-10-20 20:20:42 +00:00
|
|
|
"""
|
|
|
|
|
2022-01-11 12:35:26 +00:00
|
|
|
# From https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.0/clang+llvm-13.0.0-x86_64-linux-gnu-ubuntu-20.04.tar.xz.sha256
|
|
|
|
clang_prefix = "clang+llvm-13.0.0-x86_64-linux-gnu-ubuntu-20.04/"
|
|
|
|
clang_sha256 = "2c2fb857af97f41a5032e9ecadf7f78d3eff389a5cd3c9ec620d24f134ceb3c8"
|
|
|
|
clang_url = "https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.0/clang+llvm-13.0.0-x86_64-linux-gnu-ubuntu-20.04.tar.xz"
|
|
|
|
|
2022-01-13 15:19:38 +00:00
|
|
|
# Files are expected to be in the mirror location named after their sha256 hash. The files should
|
|
|
|
# still have their file extension, as some of the Starlark functions sniff the file extension
|
|
|
|
# (e.g. download_and_extract). See //bazel/gcs_mirror for an automated way to update this mirror.
|
|
|
|
mirror_prefix = "https://storage.googleapis.com/skia-world-readable/bazel/"
|
2022-03-08 20:27:12 +00:00
|
|
|
|
2022-01-13 15:19:38 +00:00
|
|
|
# Set this to True to only use the files from the mirror host. This can be used to test the data
|
|
|
|
# in the mirrors is not corrupt and publicly accessible.
|
|
|
|
# If testing this, you need to delete the download cache, which defaults to
|
|
|
|
# ~/.cache/bazel/_bazel_$USER/cache/repos/v1/
|
2022-03-28 13:45:26 +00:00
|
|
|
# https://bazel.build/docs/build#repository-cache
|
2022-01-13 15:19:38 +00:00
|
|
|
force_test_of_mirrors = False
|
|
|
|
|
2022-01-11 12:35:26 +00:00
|
|
|
debs_to_install = [
|
|
|
|
# These three comprise glibc. libc6 has the shared libraries, like libc itself, the math library
|
|
|
|
# (libm), etc. linux-libc-dev has the header files specific to linux. libc6-dev has the libc
|
|
|
|
# system headers (e.g. malloc.h, math.h).
|
|
|
|
{
|
|
|
|
# From https://packages.debian.org/bullseye/amd64/libc6/download
|
|
|
|
"sha256": "3d9421c3fc0ef0d8ce57c0a149e1f8dbad78aba067f120be9e652af28902e346",
|
2022-01-13 15:19:38 +00:00
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/g/glibc/libc6_2.31-13+deb11u2_amd64.deb",
|
2022-01-11 12:35:26 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# From https://packages.debian.org/bullseye/amd64/linux-libc-dev/download
|
|
|
|
"sha256": "1bb053863873916cb8d5fa877cc4972a6279931783c1fd9e4339d0369a617af4",
|
2022-01-13 15:19:38 +00:00
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/l/linux/linux-libc-dev_5.10.84-1_amd64.deb",
|
2022-01-11 12:35:26 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# From https://packages.debian.org/bullseye/amd64/libc6-dev/download
|
|
|
|
"sha256": "1911bac1137f8f51359047d2fc94053f831abcfb50f1d7584e3ae95ea0831569",
|
2022-01-13 15:19:38 +00:00
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/g/glibc/libc6-dev_2.31-13+deb11u2_amd64.deb",
|
2022-01-11 12:35:26 +00:00
|
|
|
},
|
|
|
|
# These two put the X11 include files in ${PWD}/usr/include/X11
|
|
|
|
# libx11-dev puts libX11.a in ${PWD}/usr/lib/x86_64-linux-gnu
|
|
|
|
{
|
|
|
|
# From https://packages.debian.org/bullseye/amd64/libx11-dev/download
|
|
|
|
"sha256": "11e5f9dcded1a1226b3ee02847b86edce525240367b3989274a891a43dc49f5f",
|
2022-01-13 15:19:38 +00:00
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/libx/libx11/libx11-dev_1.7.2-1_amd64.deb",
|
2022-01-11 12:35:26 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# From https://packages.debian.org/bullseye/all/x11proto-dev/download
|
|
|
|
"sha256": "d5568d587d9ad2664c34c14b0ac538ccb3c567e126ee5291085a8de704a565f5",
|
2022-01-13 15:19:38 +00:00
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/x/xorgproto/x11proto-dev_2020.1-1_all.deb",
|
2022-01-11 12:35:26 +00:00
|
|
|
},
|
|
|
|
# xcb is a dep of X11
|
|
|
|
{
|
|
|
|
# From https://packages.debian.org/bullseye/amd64/libxcb1-dev/download
|
|
|
|
"sha256": "b75544f334c8963b8b7b0e8a88f8a7cde95a714dddbcda076d4beb669a961b58",
|
2022-01-13 15:19:38 +00:00
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/libx/libxcb/libxcb1-dev_1.14-3_amd64.deb",
|
2022-01-11 12:35:26 +00:00
|
|
|
},
|
|
|
|
# Xau is a dep of xcb
|
|
|
|
{
|
|
|
|
# From https://packages.debian.org/bullseye/amd64/libxau-dev/download
|
|
|
|
"sha256": "d1a7f5d484e0879b3b2e8d512894744505e53d078712ce65903fef2ecfd824bb",
|
2022-01-13 15:19:38 +00:00
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/libx/libxau/libxau-dev_1.0.9-1_amd64.deb",
|
2022-01-11 12:35:26 +00:00
|
|
|
},
|
|
|
|
# Xdmcp is a dep of xcb. libxdmcp-dev provides the the libXdmcp.so symlink (and the
|
|
|
|
# .a if we want to statically include it). libxdmcp6 actually provides the .so file
|
|
|
|
{
|
|
|
|
# https://packages.debian.org/bullseye/amd64/libxdmcp-dev/download
|
|
|
|
"sha256": "c6733e5f6463afd261998e408be6eb37f24ce0a64b63bed50a87ddb18ebc1699",
|
2022-01-13 15:19:38 +00:00
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/libx/libxdmcp/libxdmcp-dev_1.1.2-3_amd64.deb",
|
2022-01-11 12:35:26 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# https://packages.debian.org/bullseye/amd64/libxdmcp6/download
|
|
|
|
"sha256": "ecb8536f5fb34543b55bb9dc5f5b14c9dbb4150a7bddb3f2287b7cab6e9d25ef",
|
2022-01-13 15:19:38 +00:00
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/libx/libxdmcp/libxdmcp6_1.1.2-3_amd64.deb",
|
2022-01-11 12:35:26 +00:00
|
|
|
},
|
|
|
|
# These two put GL include files in ${PWD}/usr/include/GL
|
|
|
|
{
|
|
|
|
# From https://packages.debian.org/bullseye/amd64/libgl-dev/download
|
|
|
|
"sha256": "a6487873f2706bbabf9346cdb190f47f23a1464f31cecf92c363bac37c342f2f",
|
2022-01-13 15:19:38 +00:00
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/libg/libglvnd/libgl-dev_1.3.2-1_amd64.deb",
|
2022-01-11 12:35:26 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
# From https://packages.debian.org/bullseye/amd64/libglx-dev/download
|
|
|
|
"sha256": "5a50549948bc4363eab32b1083dad2165402c3628f2ee85e9a32563228cc61c1",
|
2022-01-13 15:19:38 +00:00
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/libg/libglvnd/libglx-dev_1.3.2-1_amd64.deb",
|
2022-01-11 12:35:26 +00:00
|
|
|
},
|
|
|
|
# This provides libGL.so for us to link against.
|
|
|
|
{
|
|
|
|
# From https://packages.debian.org/bullseye/amd64/libgl1/download
|
|
|
|
"sha256": "f300f9610b5f05f1ce566c4095f1bf2170e512ac5d201c40d895b8fce29dec98",
|
2022-01-13 15:19:38 +00:00
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/libg/libglvnd/libgl1_1.3.2-1_amd64.deb",
|
2022-01-11 12:35:26 +00:00
|
|
|
},
|
2022-03-08 20:27:12 +00:00
|
|
|
# This is used by sk_app for Vulkan and Dawn on Unix.
|
|
|
|
{
|
|
|
|
# From https://packages.debian.org/bullseye/amd64/libx11-xcb-dev/download
|
|
|
|
"sha256": "80a2413ace2a0a073f2472059b9e589737cbf8a336fb6862684a5811bf640aa3",
|
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/libx/libx11/libx11-xcb-dev_1.7.2-1_amd64.deb",
|
|
|
|
},
|
2022-03-16 12:33:44 +00:00
|
|
|
# This is used to make sure we include only the headers we need. This corresponds to
|
|
|
|
# IWYU version 0.17, which uses Clang 13, like we compile with.
|
|
|
|
{
|
|
|
|
# From https://packages.debian.org/sid/amd64/iwyu/download
|
|
|
|
"sha256": "9fd6932a7609e89364f7edc5f9613892c98c21c88a3931e51cf1a0f8744759bd",
|
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/i/iwyu/iwyu_8.17-1_amd64.deb",
|
|
|
|
},
|
2022-03-25 18:59:33 +00:00
|
|
|
{
|
|
|
|
# This is a requirement of iwyu
|
|
|
|
# https://packages.debian.org/sid/amd64/libclang-cpp13/download
|
|
|
|
"sha256": "c6e2471de8f3ec06e40c8e006e06bbd251dd0c8000dee820a4b6dca3d3290c0d",
|
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/l/llvm-toolchain-13/libclang-cpp13_13.0.1-3+b1_amd64.deb",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
# This is a requirement of libclang-cpp13
|
|
|
|
# https://packages.debian.org/sid/amd64/libstdc++6/download
|
|
|
|
"sha256": "f37e5954423955938c5309a8d0e475f7e84e92b56b8301487fb885192dee8085",
|
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/g/gcc-12/libstdc++6_12-20220319-1_amd64.deb",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
# This is a requirement of iwyu
|
|
|
|
# https://packages.debian.org/sid/amd64/libllvm13/download
|
|
|
|
"sha256": "49f29a6c9fbc3097077931529e7fe1c032b1d04a984d971aa1e6990a5133556e",
|
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/l/llvm-toolchain-13/libllvm13_13.0.1-3+b1_amd64.deb",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
# This is a requirement of libllvm13
|
|
|
|
# https://packages.debian.org/sid/amd64/libffi8/download
|
|
|
|
"sha256": "87c55b36951aed18ef2c357683e15c365713bda6090f15386998b57df433b387",
|
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/libf/libffi/libffi8_3.4.2-4_amd64.deb",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
# This is a requirement of libllvm13
|
|
|
|
# https://packages.debian.org/sid/libz3-4
|
|
|
|
"sha256": "b415b863678625dee3f3c75bd48b1b9e3b6e11279ebec337904d7f09630d107f",
|
|
|
|
"url": "https://ftp.debian.org/debian/pool/main/z/z3/libz3-4_4.8.12-1+b1_amd64.deb",
|
|
|
|
},
|
2022-01-11 12:35:26 +00:00
|
|
|
]
|
|
|
|
|
2021-10-20 20:20:42 +00:00
|
|
|
def _download_and_extract_deb(ctx, deb, sha256, prefix, output = ""):
|
|
|
|
"""Downloads a debian file and extracts the data into the provided output directory"""
|
|
|
|
|
2022-06-13 20:05:14 +00:00
|
|
|
# https://bazel.build/rules/lib/repository_ctx#download_and_extract
|
|
|
|
# A .deb file has a data.tar.xz and a control.tar.xz, but the important contents
|
|
|
|
# (i.e. the headers or libs) are in the data.tar.xz
|
|
|
|
ctx.download_and_extract(
|
2022-03-08 20:27:12 +00:00
|
|
|
url = _mirror([deb, mirror_prefix + sha256 + ".deb"]),
|
2022-06-13 20:05:14 +00:00
|
|
|
output = "tmp",
|
2021-10-20 20:20:42 +00:00
|
|
|
sha256 = sha256,
|
|
|
|
)
|
|
|
|
|
2022-03-28 13:45:26 +00:00
|
|
|
# https://bazel.build/rules/lib/repository_ctx#extract
|
2022-06-07 20:37:48 +00:00
|
|
|
ctx.extract(
|
2022-03-28 13:45:26 +00:00
|
|
|
archive = "tmp/data.tar.xz",
|
2021-10-20 20:20:42 +00:00
|
|
|
output = output,
|
|
|
|
stripPrefix = prefix,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Clean up
|
2022-03-28 13:45:26 +00:00
|
|
|
ctx.delete("tmp")
|
2021-10-20 20:20:42 +00:00
|
|
|
|
2022-04-01 12:29:11 +00:00
|
|
|
def _download_linux_amd64_toolchain_impl(ctx):
|
2021-10-20 20:20:42 +00:00
|
|
|
# Download the clang toolchain (the extraction can take a while)
|
2022-03-28 13:45:26 +00:00
|
|
|
# https://bazel.build/rules/lib/repository_ctx#download_and_extract
|
|
|
|
ctx.download_and_extract(
|
2022-03-08 20:27:12 +00:00
|
|
|
url = _mirror([clang_url, mirror_prefix + clang_sha256 + ".tar.xz"]),
|
2021-10-20 20:20:42 +00:00
|
|
|
output = "",
|
2022-01-11 12:35:26 +00:00
|
|
|
stripPrefix = clang_prefix,
|
|
|
|
sha256 = clang_sha256,
|
2021-10-20 20:20:42 +00:00
|
|
|
)
|
|
|
|
|
2022-01-11 12:35:26 +00:00
|
|
|
# Extract all the debs into our sysroot. This is very similar to installing them, except their
|
|
|
|
# dependencies are not installed automatically.
|
|
|
|
for deb in debs_to_install:
|
|
|
|
_download_and_extract_deb(
|
|
|
|
ctx,
|
|
|
|
deb["url"],
|
|
|
|
deb["sha256"],
|
|
|
|
".",
|
|
|
|
)
|
2021-10-20 20:20:42 +00:00
|
|
|
|
2022-06-07 20:37:48 +00:00
|
|
|
# Create a BUILD.bazel file that makes the files downloaded into the toolchain visible.
|
|
|
|
# We have separate groups for each task because doing less work (sandboxing fewer files
|
|
|
|
# or uploading less data to RBE) makes compiles go faster. We try to strike a balance
|
|
|
|
# between minimal specifications and not having to edit this file often with our use
|
|
|
|
# of globs.
|
2022-03-28 13:45:26 +00:00
|
|
|
# https://bazel.build/rules/lib/repository_ctx#file
|
2021-10-20 20:20:42 +00:00
|
|
|
ctx.file(
|
|
|
|
"BUILD.bazel",
|
|
|
|
content = """
|
|
|
|
filegroup(
|
2022-06-07 20:37:48 +00:00
|
|
|
name = "archive_files",
|
|
|
|
srcs = [
|
|
|
|
"bin/llvm-ar",
|
|
|
|
],
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
)
|
|
|
|
|
|
|
|
filegroup(
|
|
|
|
name = "compile_files",
|
|
|
|
srcs = [
|
|
|
|
"bin/clang",
|
|
|
|
"usr/bin/include-what-you-use",
|
|
|
|
] + glob(
|
|
|
|
include = [
|
|
|
|
"include/c++/v1/**",
|
|
|
|
"usr/include/**",
|
|
|
|
"lib/clang/13.0.0/**",
|
|
|
|
"usr/include/x86_64-linux-gnu/**",
|
|
|
|
],
|
|
|
|
allow_empty = False,
|
|
|
|
),
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
)
|
|
|
|
|
|
|
|
filegroup(
|
|
|
|
name = "link_files",
|
|
|
|
srcs = [
|
|
|
|
"bin/clang",
|
|
|
|
"bin/ld.lld",
|
|
|
|
"bin/lld",
|
|
|
|
"lib/libc++.a",
|
|
|
|
"lib/libc++abi.a",
|
|
|
|
"lib/libunwind.a",
|
|
|
|
"lib64/ld-linux-x86-64.so.2",
|
|
|
|
] + glob(
|
|
|
|
include = [
|
|
|
|
"lib/clang/13.0.0/lib/**",
|
|
|
|
"lib/x86_64-linux-gnu/**",
|
|
|
|
"usr/lib/x86_64-linux-gnu/**",
|
|
|
|
],
|
|
|
|
allow_empty = False,
|
|
|
|
),
|
|
|
|
visibility = ["//visibility:public"],
|
2021-10-20 20:20:42 +00:00
|
|
|
)
|
|
|
|
""",
|
|
|
|
executable = False,
|
|
|
|
)
|
|
|
|
|
2022-01-13 15:19:38 +00:00
|
|
|
# If force_test_of_mirrors is set, return a list containing only the second item. This assumes
|
|
|
|
# that the given list will have a primary source and a mirror source (precisely two items).
|
|
|
|
def _mirror(arr):
|
|
|
|
if force_test_of_mirrors:
|
|
|
|
return [arr[1]]
|
|
|
|
return arr
|
|
|
|
|
2022-04-01 12:29:11 +00:00
|
|
|
# https://bazel.build/rules/repository_rules
|
|
|
|
download_linux_amd64_toolchain = repository_rule(
|
|
|
|
implementation = _download_linux_amd64_toolchain_impl,
|
2022-01-11 12:35:26 +00:00
|
|
|
attrs = {},
|
2022-04-01 12:29:11 +00:00
|
|
|
doc = "Downloads clang, and all supporting headers, executables, " +
|
|
|
|
"and shared libraries required to build Skia on a Linux amd64 host",
|
2021-10-20 20:20:42 +00:00
|
|
|
)
|