blob: 2979ee1bf49cf1539cf64281f063810e14ffa874 [file] [log] [blame]
Serge Bazanski9e861a82020-09-16 13:46:41 +02001load(":musl.bzl", "musl_headers")
2load(":linux.bzl", "linux_headers")
3load(":tarball.bzl", "musl_gcc_tarball")
4
5linux_headers(
6 name = "linux_headers",
7 src = "@linux//:all",
8 arch = "x86_64",
9 visibility = ["//visibility:public"],
10)
11
12musl_headers(
13 name = "musl_headers",
14 src = "@musl//:all",
15 arch = "x86_64",
16 visibility = ["//visibility:public"],
17)
18
19musl_gcc_tarball(
20 name = "sysroot",
Serge Bazanskif12bedf2021-01-15 16:58:50 +010021 linux_headers = ":linux_headers",
Serge Bazanski9e861a82020-09-16 13:46:41 +020022 musl = "//third_party/musl",
23 musl_headers = ":musl_headers",
Serge Bazanski9e861a82020-09-16 13:46:41 +020024)