You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 28, 2022. It is now read-only.
We need to turn all warnings into errors (-Werror compiler option). It would make us fix all warnings except deprecated-declarations warning. For now we have warning about syscall, in future we are going to fix this too. You can see this issue on the screen below.
Thus, with the help of the command below we will be able to clean our builds from warnings (again: except syscall warning): bazel build --copt="-Werror" --copt="-Wno-error=deprecated-declarations" :grpc
The text was updated successfully, but these errors were encountered:
We need to turn all warnings into errors (
-Werror
compiler option). It would make us fix all warnings exceptdeprecated-declarations
warning. For now we have warning aboutsyscall
, in future we are going to fix this too. You can see this issue on the screen below.Thus, with the help of the command below we will be able to clean our builds from warnings (again: except
syscall
warning):bazel build --copt="-Werror" --copt="-Wno-error=deprecated-declarations" :grpc
The text was updated successfully, but these errors were encountered: