forked from digital-asset/daml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
To include grpc/grpc#24953 and protocolbuffers/upb#356 which fix https://github.com/protocolbuffers/upb/issues/354. The issue manifested on Windows CI with errors of the form ``` bazel-out/x64_windows-opt/bin/external/com_google_protobuf/google/protobuf/descriptor.upb.c: Permission denied ``` See https://dev.azure.com/digitalasset/daml/_build/results?buildId=68545 changelog_begin changelog_end Co-authored-by: Andreas Herrmann <andreas.herrmann@tweag.io>
- Loading branch information
1 parent
9f06a28
commit 5a96ad0
Showing
3 changed files
with
42 additions
and
226 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
diff --git a/bazel/upb_proto_library.bzl b/bazel/upb_proto_library.bzl | ||
index 155d18d..de2633a 100644 | ||
--- a/bazel/upb_proto_library.bzl | ||
+++ b/bazel/upb_proto_library.bzl | ||
@@ -286,7 +286,6 @@ _upb_proto_library_aspect = aspect( | ||
attr_aspects = ["deps"], | ||
fragments = ["cpp"], | ||
toolchains = ["@bazel_tools//tools/cpp:toolchain_type"], | ||
- incompatible_use_toolchain_transition = True, | ||
) | ||
|
||
upb_proto_library = rule( | ||
@@ -340,7 +339,6 @@ _upb_proto_reflection_library_aspect = aspect( | ||
attr_aspects = ["deps"], | ||
fragments = ["cpp"], | ||
toolchains = ["@bazel_tools//tools/cpp:toolchain_type"], | ||
- incompatible_use_toolchain_transition = True, | ||
) | ||
|
||
upb_proto_reflection_library = rule( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters