From 59b6966abe60bd14d78a32cdb9449242a297e899 Mon Sep 17 00:00:00 2001 From: Kelwan Date: Tue, 10 Jan 2023 15:42:02 -0500 Subject: [PATCH] Update llvm to 15.0.6 --- WORKSPACE.bazel | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/WORKSPACE.bazel b/WORKSPACE.bazel index 2d58ec5..e988d65 100644 --- a/WORKSPACE.bazel +++ b/WORKSPACE.bazel @@ -40,9 +40,9 @@ hedron_compile_commands_setup() http_archive( name = "com_grail_bazel_toolchain", - sha256 = "053eced1289d18848e31d8ba90e9ad18787bb1fd27a1af44cce3779b7d228543", - strip_prefix = "bazel-toolchain-ca198e2ea6f229011351155339a61badf617998e", - url = "https://github.com/grailbio/bazel-toolchain/archive/ca198e2ea6f229011351155339a61badf617998e.zip", + sha256 = "3cf5ac4bb7dae3776da586fe85685274f5d89cbb59436f50f572928354e72198", + strip_prefix = "bazel-toolchain-70a0fb556662fe3cadb07da32c91e232eb0d883d", + url = "https://github.com/grailbio/bazel-toolchain/archive/70a0fb556662fe3cadb07da32c91e232eb0d883d.zip", ) load("@com_grail_bazel_toolchain//toolchain:deps.bzl", "bazel_toolchain_dependencies") @@ -54,7 +54,8 @@ load("@com_grail_bazel_toolchain//toolchain:rules.bzl", "llvm_toolchain") llvm_toolchain( name = "llvm_toolchain", cxx_standard = {"linux": "c++20"}, - llvm_version = "14.0.0", + distribution = "clang+llvm-15.0.6-x86_64-linux-gnu-ubuntu-18.04.tar.xz", + llvm_version = "15.0.6", ) load("@llvm_toolchain//:toolchains.bzl", "llvm_register_toolchains")