Skip to content

Commit

Permalink
Update @bazel_toolchains in WORKSPACE (#1701)
Browse files Browse the repository at this point in the history
Fixes #1698
  • Loading branch information
jayconrod authored and Jay Conrod committed Oct 16, 2018
1 parent dde4865 commit 23af93c
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
workspace(name = "io_bazel_rules_go")

load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains")
load("@io_bazel_rules_go//go:def.bzl", "go_register_toolchains", "go_rules_dependencies")
load("@io_bazel_rules_go//proto:def.bzl", "proto_register_toolchains")

go_rules_dependencies()
Expand Down Expand Up @@ -39,3 +39,13 @@ llvm_toolchain(
name = "llvm_toolchain",
llvm_version = "6.0.0",
)

http_archive(
name = "bazel_toolchains",
sha256 = "cefb6ccf86ca592baaa029bcef04148593c0efe8f734542f10293ea58f170715",
strip_prefix = "bazel-toolchains-cdea5b8675914d0a354d89f108de5d28e54e0edc",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-toolchains/archive/cdea5b8675914d0a354d89f108de5d28e54e0edc.tar.gz",
"https://github.com/bazelbuild/bazel-toolchains/archive/cdea5b8675914d0a354d89f108de5d28e54e0edc.tar.gz",
],
)

0 comments on commit 23af93c

Please sign in to comment.