-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PiperOrigin-RevId: 608751064
- Loading branch information
Showing
20 changed files
with
756 additions
and
802 deletions.
There are no files selected for viewing
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,6 @@ | ||
build --cxxopt='-std=c++17' --host_cxxopt='-std=c++17' | ||
run --cxxopt='-std=c++17' --host_cxxopt='-std=c++17' | ||
|
||
# To allow loops with int and comparison against a .size() that's size_t. | ||
build --copt='-Wno-sign-compare' --host_copt='-Wno-sign-compare' | ||
run --copt='-Wno-sign-compare' --host_copt='-Wno-sign-compare' |
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 @@ | ||
6.4.0 |
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
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
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
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
12 changes: 12 additions & 0 deletions
12
bazel/patches/grpc-001-fix_file_watcher_race_condition.patch
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,12 @@ | ||
diff --git a/src/core/lib/iomgr/load_file.cc b/src/core/lib/iomgr/load_file.cc | ||
index 9068670118..a4d9bc95b2 100644 | ||
--- a/src/core/lib/iomgr/load_file.cc | ||
+++ b/src/core/lib/iomgr/load_file.cc | ||
@@ -55,7 +55,6 @@ grpc_error_handle grpc_load_file(const char* filename, int add_null_terminator, | ||
if (bytes_read < contents_size) { | ||
gpr_free(contents); | ||
error = GRPC_OS_ERROR(errno, "fread"); | ||
- GPR_ASSERT(ferror(file)); | ||
goto end; | ||
} | ||
if (add_null_terminator) { |
12 changes: 12 additions & 0 deletions
12
bazel/patches/grpc-003-fix_go_gazelle_register_toolchain.patch
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,12 @@ | ||
diff --git a/bazel/grpc_extra_deps.bzl b/bazel/grpc_extra_deps.bzl | ||
index 4d8afa3..b090036 100755 | ||
--- a/bazel/grpc_extra_deps.bzl | ||
+++ b/bazel/grpc_extra_deps.bzl | ||
@@ -53,7 +53,6 @@ def grpc_extra_deps(ignore_version_differences = False): | ||
api_dependencies() | ||
|
||
go_rules_dependencies() | ||
- go_register_toolchains(version = "1.18") | ||
gazelle_dependencies() | ||
|
||
# Pull-in the go 3rd party dependencies for protoc_gen_validate, which is |
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
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
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
Oops, something went wrong.