| Serge Bazanski | 9e861a8 | 2020-09-16 13:46:41 +0200 | [diff] [blame] | 1 | load(":musl.bzl", "musl_headers") | 
|  | 2 | load(":linux.bzl", "linux_headers") | 
|  | 3 | load(":tarball.bzl", "musl_gcc_tarball") | 
|  | 4 |  | 
|  | 5 | linux_headers( | 
|  | 6 | name = "linux_headers", | 
|  | 7 | src = "@linux//:all", | 
|  | 8 | arch = "x86_64", | 
|  | 9 | visibility = ["//visibility:public"], | 
|  | 10 | ) | 
|  | 11 |  | 
|  | 12 | musl_headers( | 
|  | 13 | name = "musl_headers", | 
|  | 14 | src = "@musl//:all", | 
|  | 15 | arch = "x86_64", | 
|  | 16 | visibility = ["//visibility:public"], | 
|  | 17 | ) | 
|  | 18 |  | 
|  | 19 | musl_gcc_tarball( | 
|  | 20 | name = "sysroot", | 
| Serge Bazanski | f12bedf | 2021-01-15 16:58:50 +0100 | [diff] [blame] | 21 | linux_headers = ":linux_headers", | 
| Serge Bazanski | 9e861a8 | 2020-09-16 13:46:41 +0200 | [diff] [blame] | 22 | musl = "//third_party/musl", | 
|  | 23 | musl_headers = ":musl_headers", | 
| Serge Bazanski | 9e861a8 | 2020-09-16 13:46:41 +0200 | [diff] [blame] | 24 | ) |