xref: /llvm-project/utils/bazel/WORKSPACE (revision 0e417a700f3604fcff163e95c31202541868e08b)
1# This file is licensed under the Apache License v2.0 with LLVM Exceptions.
2# See https://llvm.org/LICENSE.txt for license information.
3# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
4
5load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
6load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
7
8SKYLIB_VERSION = "1.7.1"
9
10http_archive(
11    name = "bazel_skylib",
12    sha256 = "bc283cdfcd526a52c3201279cda4bc298652efa898b10b4db0837dc51652756f",
13    urls = [
14        "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/{version}/bazel-skylib-{version}.tar.gz".format(version = SKYLIB_VERSION),
15        "https://github.com/bazelbuild/bazel-skylib/releases/download/{version}/bazel-skylib-{version}.tar.gz".format(version = SKYLIB_VERSION),
16    ],
17)
18
19http_archive(
20    name = "rules_cc",
21    sha256 = "abc605dd850f813bb37004b77db20106a19311a96b2da1c92b789da529d28fe1",
22    strip_prefix = "rules_cc-0.0.17",
23    urls = ["https://github.com/bazelbuild/rules_cc/releases/download/0.0.17/rules_cc-0.0.17.tar.gz"],
24)
25
26new_local_repository(
27    name = "llvm-raw",
28    build_file_content = "# empty",
29    path = "../../",
30)
31
32load("@llvm-raw//utils/bazel:configure.bzl", "llvm_configure")
33
34llvm_configure(name = "llvm-project")
35
36maybe(
37    http_archive,
38    name = "rules_python",
39    sha256 = "4f7e2aa1eb9aa722d96498f5ef514f426c1f55161c3c9ae628c857a7128ceb07",
40    strip_prefix = "rules_python-1.0.0",
41    url = "https://github.com/bazelbuild/rules_python/releases/download/1.0.0/rules_python-1.0.0.tar.gz",
42)
43
44maybe(
45    http_archive,
46    name = "llvm_zlib",
47    build_file = "@llvm-raw//utils/bazel/third_party_build:zlib-ng.BUILD",
48    sha256 = "e36bb346c00472a1f9ff2a0a4643e590a254be6379da7cddd9daeb9a7f296731",
49    strip_prefix = "zlib-ng-2.0.7",
50    urls = [
51        "https://github.com/zlib-ng/zlib-ng/archive/refs/tags/2.0.7.zip",
52    ],
53)
54
55maybe(
56    http_archive,
57    name = "vulkan_headers",
58    build_file = "@llvm-raw//utils/bazel/third_party_build:vulkan_headers.BUILD",
59    sha256 = "19f491784ef0bc73caff877d11c96a48b946b5a1c805079d9006e3fbaa5c1895",
60    strip_prefix = "Vulkan-Headers-9bd3f561bcee3f01d22912de10bb07ce4e23d378",
61    urls = [
62        "https://github.com/KhronosGroup/Vulkan-Headers/archive/9bd3f561bcee3f01d22912de10bb07ce4e23d378.tar.gz",
63    ],
64)
65
66load("@llvm-raw//utils/bazel:vulkan_sdk.bzl", "vulkan_sdk_setup")
67
68maybe(
69    vulkan_sdk_setup,
70    name = "vulkan_sdk",
71)
72
73http_archive(
74    name = "build_bazel_apple_support",
75    sha256 = "c4bb2b7367c484382300aee75be598b92f847896fb31bbd22f3a2346adf66a80",
76    url = "https://github.com/bazelbuild/apple_support/releases/download/1.15.1/apple_support.1.15.1.tar.gz",
77)
78
79load(
80    "@build_bazel_apple_support//lib:repositories.bzl",
81    "apple_support_dependencies",
82)
83
84apple_support_dependencies()
85
86# llvm libc math tests reply on `mpfr`.
87# The availability of `mpfr` is controlled by a flag and can be either `disable`, `system` or `external`.
88# Continuous integration uses `system` to speed up the build process (see .bazelrc).
89# Otherwise by default it is set to `external`: `mpfr` and `gmp` are built from source by using `rules_foreign_cc`.
90# Note: that building from source requires `m4` to be installed on the host machine.
91# This is a known issue: https://github.com/bazelbuild/rules_foreign_cc/issues/755.
92
93http_archive(
94    name = "rules_foreign_cc",
95    sha256 = "4b33d62cf109bcccf286b30ed7121129cc34cf4f4ed9d8a11f38d9108f40ba74",
96    strip_prefix = "rules_foreign_cc-0.11.1",
97    url = "https://github.com/bazelbuild/rules_foreign_cc/releases/download/0.11.1/rules_foreign_cc-0.11.1.tar.gz",
98)
99
100load("@rules_foreign_cc//foreign_cc:repositories.bzl", "rules_foreign_cc_dependencies")
101
102rules_foreign_cc_dependencies()
103
104maybe(
105    http_archive,
106    name = "gmp",
107    build_file = "@llvm-raw//utils/bazel/third_party_build:gmp.BUILD",
108    sha256 = "fd4829912cddd12f84181c3451cc752be224643e87fac497b69edddadc49b4f2",
109    strip_prefix = "gmp-6.2.1",
110    urls = [
111        "https://gmplib.org/download/gmp/gmp-6.2.1.tar.xz",
112        "https://ftp.gnu.org/gnu/gmp/gmp-6.2.1.tar.xz",
113    ],
114)
115
116# https://www.mpfr.org/mpfr-current/
117#
118# When updating to a newer version, don't use URLs with "mpfr-current" in them.
119# Instead, find a stable URL like the one used currently.
120maybe(
121    http_archive,
122    name = "mpfr",
123    build_file = "@llvm-raw//utils/bazel/third_party_build:mpfr.BUILD",
124    sha256 = "9cbed5d0af0d9ed5e9f8dd013e17838eb15e1db9a6ae0d371d55d35f93a782a7",
125    strip_prefix = "mpfr-4.1.1",
126    urls = ["https://www.mpfr.org/mpfr-4.1.1/mpfr-4.1.1.tar.gz"],
127)
128
129maybe(
130    http_archive,
131    name = "pfm",
132    build_file = "@llvm-raw//utils/bazel/third_party_build:pfm.BUILD",
133    sha256 = "d18b97764c755528c1051d376e33545d0eb60c6ebf85680436813fa5b04cc3d1",
134    strip_prefix = "libpfm-4.13.0",
135    urls = ["https://versaweb.dl.sourceforge.net/project/perfmon2/libpfm4/libpfm-4.13.0.tar.gz"],
136)
137
138maybe(
139    http_archive,
140    name = "llvm_zstd",
141    build_file = "@llvm-raw//utils/bazel/third_party_build:zstd.BUILD",
142    sha256 = "7c42d56fac126929a6a85dbc73ff1db2411d04f104fae9bdea51305663a83fd0",
143    strip_prefix = "zstd-1.5.2",
144    urls = [
145        "https://github.com/facebook/zstd/releases/download/v1.5.2/zstd-1.5.2.tar.gz",
146    ],
147)
148
149maybe(
150    http_archive,
151    name = "pybind11",
152    build_file = "@llvm-raw//utils/bazel/third_party_build:pybind.BUILD",
153    sha256 = "201966a61dc826f1b1879a24a3317a1ec9214a918c8eb035be2f30c3e9cfbdcb",
154    strip_prefix = "pybind11-2.10.3",
155    url = "https://github.com/pybind/pybind11/archive/v2.10.3.zip",
156)
157
158maybe(
159    http_archive,
160    name = "robin_map",
161    build_file = "@llvm-raw//utils/bazel/third_party_build:robin_map.BUILD",
162    sha256 = "a8424ad3b0affd4c57ed26f0f3d8a29604f0e1f2ef2089f497f614b1c94c7236",
163    strip_prefix = "robin-map-1.3.0",
164    url = "https://github.com/Tessil/robin-map/archive/refs/tags/v1.3.0.tar.gz",
165)
166
167maybe(
168    http_archive,
169    name = "nanobind",
170    build_file = "@llvm-raw//utils/bazel/third_party_build:nanobind.BUILD",
171    sha256 = "bb35deaed7efac5029ed1e33880a415638352f757d49207a8e6013fefb6c49a7",
172    strip_prefix = "nanobind-2.4.0",
173    url = "https://github.com/wjakob/nanobind/archive/refs/tags/v2.4.0.tar.gz",
174)
175
176load("@rules_python//python:repositories.bzl", "py_repositories", "python_register_toolchains")
177
178py_repositories()
179
180python_register_toolchains(
181    name = "python_3_12",
182    python_version = "3.12",
183)
184