brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.3 KiB · 2239c02 Raw
40 lines · plain
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-exception4 5"""bzlmod configuration for llvm-project"""6 7module(name = "llvm-project-overlay")8 9bazel_dep(name = "apple_support", version = "1.24.1", repo_name = "build_bazel_apple_support")10bazel_dep(name = "bazel_skylib", version = "1.8.2")11bazel_dep(name = "platforms", version = "1.0.0")12bazel_dep(name = "protobuf", version = "31.1", repo_name = "com_google_protobuf")13bazel_dep(name = "rules_android", version = "0.6.6")14bazel_dep(name = "rules_cc", version = "0.2.11")15bazel_dep(name = "rules_foreign_cc", version = "0.15.1")16bazel_dep(name = "rules_python", version = "1.6.3")17bazel_dep(name = "rules_shell", version = "0.6.1")18bazel_dep(name = "zlib-ng", version = "2.0.7", repo_name = "llvm_zlib")19bazel_dep(name = "zstd", version = "1.5.7", repo_name = "llvm_zstd")20 21llvm_repos_extension = use_extension(":extensions.bzl", "llvm_repos_extension")22use_repo(23    llvm_repos_extension,24    "gmp",25    "llvm-raw",26    "mpc",27    "mpfr",28    "nanobind",29    "pfm",30    "pybind11",31    "pyyaml",32    "robin_map",33    "vulkan_headers",34    "vulkan_sdk",35)36 37llvm_configure = use_repo_rule("@llvm-raw//utils/bazel:configure.bzl", "llvm_configure")38 39llvm_configure(name = "llvm-project")40