mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-27 07:31:28 +00:00
81d5412439
Only require one intermediate repository instead of two. Fewer parameters in llvm_config. Second attempt of https://reviews.llvm.org/D107714, this time also updating `third_party_build` and `deps_impl` paths. Reviewed By: GMNGeoffrey Differential Revision: https://reviews.llvm.org/D108274
87 lines
2.7 KiB
Python
87 lines
2.7 KiB
Python
# This file is licensed under the Apache License v2.0 with LLVM Exceptions.
|
|
# See https://llvm.org/LICENSE.txt for license information.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
|
|
|
|
SKYLIB_VERSION = "1.0.3"
|
|
|
|
http_archive(
|
|
name = "bazel_skylib",
|
|
sha256 = "1c531376ac7e5a180e0237938a2536de0c54d93f5c278634818e0efc952dd56c",
|
|
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),
|
|
],
|
|
)
|
|
|
|
new_local_repository(
|
|
name = "llvm-raw",
|
|
path = "../../",
|
|
build_file_content = "# empty",
|
|
)
|
|
|
|
load("@llvm-raw//utils/bazel:configure.bzl", "llvm_configure")
|
|
|
|
llvm_configure(name = "llvm-project")
|
|
|
|
load("@llvm-raw//utils/bazel:terminfo.bzl", "llvm_terminfo_from_env")
|
|
|
|
maybe(
|
|
llvm_terminfo_from_env,
|
|
name = "llvm_terminfo",
|
|
)
|
|
|
|
maybe(
|
|
http_archive,
|
|
name = "zlib",
|
|
build_file = "@llvm-raw//utils/bazel/third_party_build:zlib.BUILD",
|
|
sha256 = "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1",
|
|
strip_prefix = "zlib-1.2.11",
|
|
urls = [
|
|
"https://storage.googleapis.com/mirror.tensorflow.org/zlib.net/zlib-1.2.11.tar.gz",
|
|
"https://zlib.net/zlib-1.2.11.tar.gz",
|
|
],
|
|
)
|
|
|
|
load("@llvm-raw//utils/bazel:zlib.bzl", "llvm_zlib_from_env")
|
|
|
|
maybe(
|
|
llvm_zlib_from_env,
|
|
name = "llvm_zlib",
|
|
external_zlib = "@zlib",
|
|
)
|
|
|
|
maybe(
|
|
http_archive,
|
|
name = "vulkan_headers",
|
|
build_file = "@llvm-raw//utils/bazel/third_party_build:vulkan_headers.BUILD",
|
|
sha256 = "19f491784ef0bc73caff877d11c96a48b946b5a1c805079d9006e3fbaa5c1895",
|
|
strip_prefix = "Vulkan-Headers-9bd3f561bcee3f01d22912de10bb07ce4e23d378",
|
|
urls = [
|
|
"https://github.com/KhronosGroup/Vulkan-Headers/archive/9bd3f561bcee3f01d22912de10bb07ce4e23d378.tar.gz",
|
|
],
|
|
)
|
|
|
|
load("@llvm-raw//utils/bazel:vulkan_sdk.bzl", "vulkan_sdk_setup")
|
|
|
|
maybe(
|
|
vulkan_sdk_setup,
|
|
name = "vulkan_sdk",
|
|
)
|
|
|
|
http_archive(
|
|
name = "bazel_toolchains",
|
|
sha256 = "1adf5db506a7e3c465a26988514cfc3971af6d5b3c2218925cd6e71ee443fc3f",
|
|
strip_prefix = "bazel-toolchains-4.0.0",
|
|
urls = [
|
|
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/releases/download/4.0.0/bazel-toolchains-4.0.0.tar.gz",
|
|
"https://github.com/bazelbuild/bazel-toolchains/releases/download/4.0.0/bazel-toolchains-4.0.0.tar.gz",
|
|
],
|
|
)
|
|
|
|
load("@bazel_toolchains//rules:rbe_repo.bzl", "rbe_autoconfig")
|
|
|
|
rbe_autoconfig(name = "rbe_default")
|