We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I tried this on the terminal using rust-gdbgui:
$ rust-gdbgui --gdb-args "--pid 12345"
I expected to see this happen: gdbgui on the browser
gdbgui on the browser
Instead, this happened: gdbgui: error: unrecognized arguments: --gdb-args
gdbgui: error: unrecognized arguments: --gdb-args
rustc --version --verbose:
rustc --version --verbose
rustc 1.46.0 (04488afe3 2020-08-24) binary: rustc commit-hash: 04488afe34512aa4c33566eb16d8c912a3ae04f9 commit-date: 2020-08-24 host: x86_64-unknown-linux-gnu release: 1.46.0 LLVM version: 10.0
The cause was that the latest gdbgui (v0.14.0.0) has removed --gdb-args option in favor of --gdb-cmd
--gdb-args
--gdb-cmd
The text was updated successfully, but these errors were encountered:
That sounds like expected breakage then
Sorry, something went wrong.
3c23567
Successfully merging a pull request may close this issue.
I tried this on the terminal using rust-gdbgui:
$ rust-gdbgui --gdb-args "--pid 12345"
I expected to see this happen:
gdbgui on the browser
Instead, this happened:
gdbgui: error: unrecognized arguments: --gdb-args
Meta
rustc --version --verbose
:The cause was that the latest gdbgui (v0.14.0.0) has removed
--gdb-args
option in favor of--gdb-cmd
The text was updated successfully, but these errors were encountered: