Snow Pettersen
Snow Pettersen
@Amanieu Hitting this issue on x86_64-apple-ios and moving to Rust 1.60.0 (which I believe includes the proposed fix) does *not* seem to fix it. ``` | duplicate symbol '___extendhfsf2' in:...
Quick proof of concept of what I was thinking: https://github.com/snowp/bazel/commit/06724994c114c0494fa1e82a53022f6d28e14279 Would love to hear if this is something that'd be useful. @damienmg mind taking a look? or delegating to someone...
While `gcc` *can* compile C++ they're aren't the same: https://stackoverflow.com/questions/172587/what-is-the-difference-between-g-and-gcc From what I understand it might be possible to configure `gcc` to do whatever `g++` can do, but it seems...
The issue that envoy ran into boiled down to the fact that `gcc` ignored `-static-libstdc++` while `g++` did not: https://github.com/bazelbuild/bazel/issues/2840, so there's more to it then just +/- `-lstdc++` From...
To be clear: I'm arguing for giving people the **option** to specify a different C/C++ compiler, not claiming that it's necessary
Yeah I'm well aware of the limitations when it comes to uploading artifacts, so yeah it might be smarter to hold off for now. I'm also not sure if it's...
Yeah I think it’s definitely feasible. Turns out data-plane-api doesn’t actually expose the proto libraries in a way that java_proto_library can consume them (due to visibility rules). I’ve filed an...
I don't have a horse in this race but IMO delta is a big enough change that a breaking API (or new API) would be warranted in order to support...
Already talked to @htuch on Slack about this, I'm in favor of this
This seems like a bug to me. I assume this happens because the code right now assumes that if the requested version matches the server version then nothing needs to...