| |
| new_local_repository( |
| name = "llvm-raw", |
| build_file_content = "# empty", |
| path = "../llvm-project", |
| ) |
| |
| load("@llvm-raw//utils/bazel:configure.bzl", "llvm_configure") |
| |
| llvm_configure(name = "llvm-project", targets = ["AArch64", "NVPTX", "X86"]) |
| |
| load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
| load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") |
| |
| # Hedron's Compile Commands Extractor for Bazel |
| # https://github.com/hedronvision/bazel-compile-commands-extractor |
| http_archive( |
| name = "hedron_compile_commands", |
| # Even better, set up Renovate and let it do the work for you (see "Suggestion: Updates" in the README). |
| url = "https://github.com/hedronvision/bazel-compile-commands-extractor/archive/abb61a688167623088f8768cc9264798df6a9d10.tar.gz", |
| strip_prefix = "bazel-compile-commands-extractor-abb61a688167623088f8768cc9264798df6a9d10", |
| ) |
| load("@hedron_compile_commands//:workspace_setup.bzl", "hedron_compile_commands_setup") |
| hedron_compile_commands_setup() |
| load("@hedron_compile_commands//:workspace_setup_transitive.bzl", "hedron_compile_commands_setup_transitive") |
| hedron_compile_commands_setup_transitive() |
| load("@hedron_compile_commands//:workspace_setup_transitive_transitive.bzl", "hedron_compile_commands_setup_transitive_transitive") |
| hedron_compile_commands_setup_transitive_transitive() |
| load("@hedron_compile_commands//:workspace_setup_transitive_transitive_transitive.bzl", "hedron_compile_commands_setup_transitive_transitive_transitive") |
| hedron_compile_commands_setup_transitive_transitive_transitive() |
| |
| SKYLIB_VERSION = "1.3.0" |
| |
| http_archive( |
| name = "bazel_skylib", |
| sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506", |
| urls = [ |
| "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/{version}/bazel-skylib-{version}.tar.gz".format(version=SKYLIB_VERSION), |
| "https://github.com/bazelbuild/bazel-skylib/releases/download/{version}/bazel-skylib-{version}.tar.gz".format(version=SKYLIB_VERSION), |
| ], |
| ) |
| |
| maybe( |
| http_archive, |
| name = "llvm_zlib", |
| build_file = "@llvm-raw//utils/bazel/third_party_build:zlib-ng.BUILD", |
| sha256 = "e36bb346c00472a1f9ff2a0a4643e590a254be6379da7cddd9daeb9a7f296731", |
| strip_prefix = "zlib-ng-2.0.7", |
| urls = [ |
| "https://github.com/zlib-ng/zlib-ng/archive/refs/tags/2.0.7.zip", |
| ], |
| ) |
| |
| maybe( |
| http_archive, |
| name = "llvm_zstd", |
| build_file = "@llvm-raw//utils/bazel/third_party_build:zstd.BUILD", |
| sha256 = "7c42d56fac126929a6a85dbc73ff1db2411d04f104fae9bdea51305663a83fd0", |
| strip_prefix = "zstd-1.5.2", |
| urls = [ |
| "https://github.com/facebook/zstd/releases/download/v1.5.2/zstd-1.5.2.tar.gz" |
| ], |
| ) |
| |
| PYRULES_COMMIT = "fe33a4582c37499f3caeb49a07a78fc7948a8949" |
| PYRULES_SHA256 = "cfa6957832ae0e0c7ee2ccf455a888a291e8419ed8faf45f4420dd7414d5dd96" |
| |
| http_archive( |
| name = "rules_python", |
| sha256 = PYRULES_SHA256, |
| strip_prefix = "rules_python-" + PYRULES_COMMIT, |
| urls = ["https://github.com/bazelbuild/rules_python/archive/{commit}.tar.gz".format(commit = PYRULES_COMMIT)] |
| ) |
| |
| |
| load("@rules_python//python:repositories.bzl", "py_repositories") |
| |
| py_repositories() |
| |