You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/doc/rustc-dev-guide/src/debugging-support-in-rustc.md
+6-4
Original file line number
Diff line number
Diff line change
@@ -125,14 +125,16 @@ visualization to serve up in the debugger.
125
125
Both WinDbg and CDB support defining and viewing custom visualizations for any given type
126
126
within the debugger using the Natvis framework. The Rust compiler defines a set of Natvis
127
127
files that define custom visualizations for a subset of types in the standard libraries such
128
-
as, `std, core and alloc`. These Natvis files are embedded into `PDBs` generated by the
128
+
as, `std`, `core`, and `alloc`. These Natvis files are embedded into `PDBs` generated by the
129
129
`*-pc-windows-msvc` target triples to automatically enable these custom visualizations when
130
130
debugging. This default can be overridden by setting the `strip` rustc flag to either `debuginfo`
131
131
or `symbols`.
132
132
133
133
Rust has support for embedding Natvis files for crates outside of the standard libraries by
134
-
using the `#[debugger_visualizer]` attribute. For more details on how to embed debugger visualizers
135
-
please refer to the `#[debugger_visualizer]` attribute in [the unstable book](https://doc.rust-lang.org/unstable-book/language-features/debugger-visualizer.html).
134
+
using the `#[debugger_visualizer]` attribute.
135
+
For more details on how to embed debugger visualizers,
136
+
please refer to the `#[debugger_visualizer]` attribute in
0 commit comments