From 78f98c1ac00458ca2e07ef7796f918cec5267093 Mon Sep 17 00:00:00 2001 From: XNNPACK Team Date: Thu, 1 Jul 2021 09:50:49 -0700 Subject: [PATCH] Update reference to rules_cc to main.zip. This is required by https://github.com/bazelbuild/rules_cc/issues/107 The longer term solution is: - To use a named release of rules_cc once that is available (See https://github.com/bazelbuild/rules_cc/issues/91) - Wrap the `http_archive` rules with `maybe` so that there will not be conflicts if downstream users try to mix rules_cc versions. PiperOrigin-RevId: 382544881 --- WORKSPACE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WORKSPACE b/WORKSPACE index eb15754021fb..c58e76b67069 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -5,7 +5,7 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") # Bazel rule definitions http_archive( name = "rules_cc", - strip_prefix = "rules_cc-master", + strip_prefix = "rules_cc-main", urls = ["https://github.com/bazelbuild/rules_cc/archive/main.zip"], )