-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Turn on warnings by default #277
Comments
I tried building
Adding the
There are similar configuration errors with jemalloc when building with the default settings of
I don't know why warning settings and/or compiler selection breaks jemalloc like this. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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):(This issue is a recreation of 3rdparty/eventuals-grpc#34 now that the eventuals-grpc repo has been turned down)
@ArthurBandaryk FYI
The text was updated successfully, but these errors were encountered: