-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMODULE.bazel
51 lines (44 loc) · 1.9 KB
/
MODULE.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"Correctness and performance benchmarking suite for malloc implementations"
# Hedron's Compile Commands Extractor for Bazel
# https://github.com/hedronvision/bazel-compile-commands-extractor
bazel_dep(name = "hedron_compile_commands", dev_dependency = True)
git_override(
module_name = "hedron_compile_commands",
commit = "cd047b3c64fd4574642535a7108d5d998eefa923",
remote = "https://github.com/ClaytonKnittel/bazel-compile-commands-extractor.git",
)
bazel_dep(name = "cc-util")
git_override(
module_name = "cc-util",
commit = "bbd3f78ed7e1a441f6ae886667bd0316f541173f",
remote = "https://github.com/ClaytonKnittel/cc-util.git",
)
bazel_dep(name = "rules_boost", repo_name = "com_github_nelhage_rules_boost")
git_override(
module_name = "rules_boost",
commit = "504e4dbc8c480fac5da33035490bc2ccc59db749",
remote = "https://github.com/nelhage/rules_boost.git",
)
non_module_boost_repositories = use_extension("@com_github_nelhage_rules_boost//:boost/repositories.bzl", "non_module_dependencies")
use_repo(
non_module_boost_repositories,
"boost",
)
bazel_dep(name = "buildifier_prebuilt", version = "6.4.0", dev_dependency = True)
bazel_dep(name = "abseil-cpp", version = "20240116.2")
bazel_dep(name = "fmt", version = "11.0.2")
bazel_dep(name = "glog", version = "0.7.1", repo_name = "com_github_google_glog")
bazel_dep(name = "googletest", version = "1.14.0.bcr.1")
bazel_dep(name = "protobuf", version = "28.2")
bazel_dep(name = "re2", version = "2024-07-02")
bazel_dep(name = "rules_python", version = "0.36.0")
bazel_dep(name = "zlib", version = "1.3.1.bcr.3")
bazel_dep(name = "toolchains_llvm", version = "1.2.0")
llvm = use_extension("@toolchains_llvm//toolchain/extensions:llvm.bzl", "llvm", dev_dependency = True)
llvm.toolchain(
llvm_versions = {
"": "18.1.8",
},
)
use_repo(llvm, "llvm_toolchain")
register_toolchains("@llvm_toolchain//:all", dev_dependency = True)