-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMODULE.bazel
More file actions
35 lines (30 loc) · 1.24 KB
/
MODULE.bazel
File metadata and controls
35 lines (30 loc) · 1.24 KB
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
module(
name = "bzlcmd",
version = "0.2.6",
compatibility_level = 1,
)
bazel_dep(name = "toolchains_llvm", version = "1.5.0", dev_dependency = True)
bazel_dep(name = "hedron_compile_commands", dev_dependency = True)
bazel_dep(name = "rules_cc", version = "0.2.5")
bazel_dep(name = "bazel_skylib", version = "1.8.1")
bazel_dep(name = "nlohmann_json", version = "3.12.0")
bazel_dep(name = "boost.process", version = "1.87.0")
bazel_dep(name = "boost.asio", version = "1.87.0.bcr.1")
bazel_dep(name = "boost.url", version = "1.87.0")
bazel_dep(name = "boost.regex", version = "1.87.0")
bazel_dep(name = "libdeflate", version = "1.19")
bazel_dep(name = "abseil-cpp", version = "20250814.0")
bazel_dep(name = "boringssl", version = "0.20250818.0")
bazel_dep(name = "docopt.cpp", version = "0.6.2")
git_override(
module_name = "hedron_compile_commands",
commit = "204aa593e002cbd177d30f11f54cff3559110bb9",
remote = "https://github.com/hedronvision/bazel-compile-commands-extractor.git",
)
llvm = use_extension("@toolchains_llvm//toolchain/extensions:llvm.bzl", "llvm")
llvm.toolchain(llvm_version = "20.1.0")
use_repo(llvm, "llvm_toolchain", "llvm_toolchain_llvm")
register_toolchains(
"@llvm_toolchain//:all",
dev_dependency = True,
)