Skip to content

Commit

Permalink
Auto merge of #57708 - nbigaouette:pr-53774-fix-missing-rust-gdbui-in…
Browse files Browse the repository at this point in the history
…stall, r=Mark-Simulacrum

Install missing 'rust-gdbui''

PR #53774 added `rust-gdbui` as wrapper to launch [gdbui](https://gdbgui.com/), similar to `rust-gdb`.

Unfortunately I've never seen the script in my local installation (from rustup, using rust 1.31.1). @tromey on the PR [suggested it might be missing](#53774 (comment)) from the installation process.

This PR simply adds a line for `rust-gdbui` too.
  • Loading branch information
bors committed Jan 21, 2019
2 parents 7bac68a + bf9c0fb commit b5f5a27
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/bootstrap/dist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -602,6 +602,8 @@ impl Step for DebuggerScripts {
// gdb debugger scripts
builder.install(&builder.src.join("src/etc/rust-gdb"), &sysroot.join("bin"),
0o755);
builder.install(&builder.src.join("src/etc/rust-gdbgui"), &sysroot.join("bin"),
0o755);

cp_debugger_script("gdb_load_rust_pretty_printers.py");
cp_debugger_script("gdb_rust_pretty_printing.py");
Expand Down

0 comments on commit b5f5a27

Please sign in to comment.