-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Fix gdb-cmd for rust-gdbgui #99194
Fix gdb-cmd for rust-gdbgui #99194
Conversation
(rust-highfive has picked a reviewer for you, use r? to override) |
What is the compatibility story with older gdbgui here? Should we try both versions somehow (catching errors?)? |
Looks like 0.13.0 was when the breakage happened which was released July 16th 2018. I couldn't find a great graph tool of gdbgui downloads by package version. I did find pepy.tech but don't know how reliable it is. Based on looking at recent downloads of the gdbgui 0.13.2 compared to Anyway, if we want to support both versions, I can update this PR but I kinda don't think it's worth the future maintenance of the script. |
Hi, just chipping in to support this PR. Would be great to have it merged, thank you :) |
Ping from triage: |
This is not abandoned. @Mark-Simulacrum asked about about compatibility. I think I answered sufficiently. Let me know if there's anything more I can do. |
@rustbot ready |
@bors r+ rollup I'm going to go ahead and merge this, we can rollback if users complain but it seems like a reasonable step to keep compatibility with newer versions given their usage figures (at least to some extent). |
…iaskrgr Rollup of 7 pull requests Successful merges: - rust-lang#99194 (Fix gdb-cmd for rust-gdbgui) - rust-lang#99880 (`EscapeAscii` is not an `ExactSizeIterator`) - rust-lang#102524 (rustdoc: remove weird `<a href="#">` wrapper around unsafe triangle) - rust-lang#102581 (Make the `config.src` handling for downloadable bootstrap more conservative) - rust-lang#102604 (Improve readability of bootstrap's README) - rust-lang#102723 (test: run-make: skip when cross-compiling) - rust-lang#102815 (rustdoc: remove mobile topbar from source pages instead of hiding it) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
With cs01/gdbgui#198, the way that gdbgui arguments were specified changed. I've tested this with program generated from
cargo new --bin
and it worked as gdbgui should.Closes #76383.