diff options
| author | Andrew Gaspar <andrew.gaspar@outlook.com> | 2017-02-20 11:10:32 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2017-04-24 16:26:00 -0700 |
| commit | 70e673952ee7544576e2912efe9735bc4617e447 (patch) | |
| tree | 5482fa653416323d355765fe587465972038180a /src/bootstrap | |
| parent | 63c77214c1d38789652b465694b254205d1886e0 (diff) | |
| download | rust-70e673952ee7544576e2912efe9735bc4617e447.tar.gz rust-70e673952ee7544576e2912efe9735bc4617e447.zip | |
Adds rust-windbg.cmd script
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/dist.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs index 4328c4e3f1d..ada8d4df604 100644 --- a/src/bootstrap/dist.rs +++ b/src/bootstrap/dist.rs @@ -254,7 +254,12 @@ pub fn debugger_scripts(build: &Build, install(&build.src.join("src/etc/").join(file), &dst, 0o644); }; if host.contains("windows-msvc") { - // no debugger scripts + // windbg debugger scripts + install(&build.src.join("src/etc/rust-windbg.cmd"), &sysroot.join("bin"), + 0o755); + + cp_debugger_script("natvis/libcore.natvis"); + cp_debugger_script("natvis/libcollections.natvis"); } else { cp_debugger_script("debugger_pretty_printers_common.py"); |
