-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
rust-lldb unable to pretty-print PathBuf or OsString #48462
Labels
A-debuginfo
Area: Debugging information in compiled programs (DWARF, PDB, etc.)
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
P-medium
Medium priority
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Comments
pietroalbini
added
A-debuginfo
Area: Debugging information in compiled programs (DWARF, PDB, etc.)
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
labels
Feb 27, 2018
I've added details in #63266. |
Visited during wg-debugging triage. We were not able to conclusively repro but we're confident this is probably still an issue. Triaging as P-medium for now. |
n8henrie
added a commit
to n8henrie/rust
that referenced
this issue
Feb 1, 2024
n8henrie
added a commit
to n8henrie/rust
that referenced
this issue
Feb 1, 2024
n8henrie
added a commit
to n8henrie/rust
that referenced
this issue
Mar 17, 2024
n8henrie
added a commit
to n8henrie/rust
that referenced
this issue
Mar 17, 2024
n8henrie
added a commit
to n8henrie/rust
that referenced
this issue
Mar 18, 2024
matthiaskrgr
added a commit
to matthiaskrgr/rust
that referenced
this issue
Mar 24, 2024
…lacrum Add rust-lldb pretty printing for Path and PathBuf Fixes rust-lang#120553 Fixes rust-lang#48462
matthiaskrgr
added a commit
to matthiaskrgr/rust
that referenced
this issue
Mar 25, 2024
…lacrum Add rust-lldb pretty printing for Path and PathBuf Fixes rust-lang#120553 Fixes rust-lang#48462
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Mar 25, 2024
…crum Add rust-lldb pretty printing for Path and PathBuf Fixes rust-lang#120553 Fixes rust-lang#48462
n8henrie
added a commit
to n8henrie/rust
that referenced
this issue
Mar 26, 2024
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Mar 28, 2024
…crum Add rust-lldb pretty printing for Path and PathBuf Fixes rust-lang#120553 Fixes rust-lang#48462
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Mar 29, 2024
…crum Add rust-lldb pretty printing for Path and PathBuf Fixes rust-lang#120553 Fixes rust-lang#48462
n8henrie
added a commit
to n8henrie/rust
that referenced
this issue
Mar 29, 2024
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Mar 30, 2024
…crum Add rust-lldb pretty printing for Path and PathBuf Fixes rust-lang#120553 Fixes rust-lang#48462
github-actions bot
pushed a commit
to rust-lang/miri
that referenced
this issue
Mar 30, 2024
Add rust-lldb pretty printing for Path and PathBuf Fixes rust-lang/rust#120553 Fixes rust-lang/rust#48462
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-debuginfo
Area: Debugging information in compiled programs (DWARF, PDB, etc.)
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
P-medium
Medium priority
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
If
path
is a PathBuf, printing it from lldb does not give a string representation as I would expect.If I explicitly refer to path.inner it shows "None" for the inner OsString:
If I use
path.inner.inner
I finally get a vec representation.The text was updated successfully, but these errors were encountered: