Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

Commit

Permalink
fix: llvm doesn't distribute all architectures at all versions
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeagle committed Aug 15, 2024
1 parent 1c8ded8 commit fca0fb0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,13 @@ bazel_dep(name = "toolchains_llvm", version = "1.1.2")
bazel_dep(name = "toolchains_protoc", version = "0.3.1")

llvm = use_extension("@toolchains_llvm//toolchain/extensions:llvm.bzl", "llvm")
llvm.toolchain(llvm_version = "15.0.6")
llvm.toolchain(
llvm_versions = {
"": "15.0.6",
"darwin-aarch64": "15.0.7",
"darwin-x86_64": "15.0.7",
},
)

use_repo(llvm, "llvm_toolchain")

Expand Down

0 comments on commit fca0fb0

Please sign in to comment.