Skip to content

Rollup of 8 pull requests #69521

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

Closed
wants to merge 31 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
9fa8d87
Add more context to E0599 errors
estebank Feb 18, 2020
24bfa16
Reduce vebosity of E0599
estebank Feb 18, 2020
70255ef
On single local candidate, use span label
estebank Feb 18, 2020
2e8399d
Deduplicate information in E0599
estebank Feb 18, 2020
1b4c5b5
Track all predicates in errors, not just trait obligations
estebank Feb 19, 2020
9a7345b
Show information of chain of bound obligations
estebank Feb 19, 2020
615542a
Point at closure definitions
estebank Feb 19, 2020
9245415
Mention the full path of the implementing trait
estebank Feb 19, 2020
cfbb746
Tweak wording
estebank Feb 19, 2020
7818a1d
Suggest constraining type parameters
estebank Feb 19, 2020
3a58953
Account for arbitrary self types in E0599
estebank Feb 19, 2020
529b891
Review comments: split requirement text to multiple lines for readabi…
estebank Feb 21, 2020
a796af7
Fail on multiple declarations of `main`.
jumbatm Feb 22, 2020
8d0e918
Do not ping PR reviewers in toolstate breakage
JohnTitor Feb 25, 2020
a66599f
keep predicate order and tweak output
estebank Feb 25, 2020
c02de78
Reduce verbosity when suggesting restricting type params
estebank Feb 25, 2020
87f4eb2
Implement new gdb/lldb pretty-printers
artemmukhin May 14, 2019
0173490
Reword message
estebank Feb 25, 2020
c02e56a
Do not suggest implementing traits if present in predicates
estebank Feb 25, 2020
6ce5ab6
rustc_span: Add `Symbol::to_ident_string` for use in diagnostic messages
petrochenkov Feb 26, 2020
280e381
don't take redundant references to operands
matthiaskrgr Feb 26, 2020
896a081
use find(x) instead of filter(x).next()
matthiaskrgr Feb 26, 2020
b6f0567
librustc_typeck: remove loop that never actually loops
matthiaskrgr Feb 24, 2020
40706c0
Rollup merge of #60826 - ortem:new-dbg-pretty-printers, r=pnkfelix
Dylan-DPC Feb 27, 2020
4524657
Rollup merge of #69255 - estebank:e0599-details, r=varkor
Dylan-DPC Feb 27, 2020
f7f57eb
Rollup merge of #69379 - jumbatm:llvm-sigsegv, r=pnkfelix
Dylan-DPC Feb 27, 2020
01b2b35
Rollup merge of #69430 - matthiaskrgr:noloop, r=varkor
Dylan-DPC Feb 27, 2020
7a92149
Rollup merge of #69449 - JohnTitor:toolstate-ping, r=Mark-Simulacrum
Dylan-DPC Feb 27, 2020
7d6862c
Rollup merge of #69491 - petrochenkov:symprint, r=Mark-Simulacrum
Dylan-DPC Feb 27, 2020
aebbaf7
Rollup merge of #69495 - matthiaskrgr:op_ref, r=oli-obk
Dylan-DPC Feb 27, 2020
8c811a4
Rollup merge of #69496 - matthiaskrgr:filter_next, r=ecstatic-morse
Dylan-DPC Feb 27, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/bootstrap/dist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -614,19 +614,21 @@ impl Step for DebuggerScripts {
cp_debugger_script("natvis/libcore.natvis");
cp_debugger_script("natvis/libstd.natvis");
} else {
cp_debugger_script("debugger_pretty_printers_common.py");
cp_debugger_script("rust_types.py");

// 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");
cp_debugger_script("gdb_lookup.py");
cp_debugger_script("gdb_providers.py");

// lldb debugger scripts
builder.install(&builder.src.join("src/etc/rust-lldb"), &sysroot.join("bin"), 0o755);

cp_debugger_script("lldb_rust_formatters.py");
cp_debugger_script("lldb_lookup.py");
cp_debugger_script("lldb_providers.py");
}
}
}
Expand Down
Loading