Open puzzle-rusher opened 1 year ago
grpc_wrap.cc is maintained by the project, it's expected to be no warnings. Can you paste the actual warnings?
grpc_wrap.cc is maintained by the project, it's expected to be no warnings. Can you paste the actual warnings?
https://gist.github.com/puzzle-rusher/fee086d8b370965c76134c7943bd745b
grpc_wrap.cc is maintained by the project, it's expected to be no warnings. Can you paste the actual warnings?
I think this is wrong behavior anyway, if the cc
library warns you of this possibility, you should heed them. I spent a lot of time to find the reason why I can't compile my project which has a transitive dependency on your project, I don't want anyone to waste time on this.
The warnings are generated by the builtin headers instead of any code from grpc-rs. It means your compiler might not match the headers. I can see there is a similar issue in other project, maybe you can try similar solutions. https://github.com/golang/go/issues/38876
The warnings are generated by the builtin headers instead of any code from grpc-rs. It means your compiler might not match the headers. I can see there is a similar issue in other project, maybe you can try similar solutions. golang/go#38876
It's a common situation. And it's not the reason to prohibit using your library, don't you think?
I ran into a problem when I tried to compile this project.
cc
stops compilation when 184 warnings are encountered, while allowing a maximum of 20 errors.Warning: turning warnings into errors only make sense if you are a developer of the crate using cc-rs. Some warnings only appear on some architecture or specific version of the compiler. Any user of this crate, or any other crate depending on it, could fail during compile time.