-
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
Cannot write ICE files to disk on Windows hosts #115180
Labels
C-bug
Category: This is a bug.
O-windows
Operating system: Windows
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Comments
rustbot
added
the
needs-triage
This issue may need triage. Remove it if it has been sufficiently triaged.
label
Aug 24, 2023
saethlin
added
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
and removed
needs-triage
This issue may need triage. Remove it if it has been sufficiently triaged.
labels
Aug 24, 2023
|
cc @estebank |
Yes, we can change the format. |
estebank
added a commit
to estebank/rust
that referenced
this issue
Oct 16, 2023
Windows paths do not support `:`, so use a datetime format in ICE dump paths that Windows will accept. Fix rust-lang#116809, fix rust-lang#115180.
estebank
added a commit
to estebank/rust
that referenced
this issue
Oct 16, 2023
Windows paths do not support `:`, so use a datetime format in ICE dump paths that Windows will accept. Fix rust-lang#116809, fix rust-lang#115180.
estebank
added a commit
to estebank/rust
that referenced
this issue
Oct 16, 2023
Windows paths do not support `:`, so use a datetime format in ICE dump paths that Windows will accept. Fix rust-lang#116809, fix rust-lang#115180.
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Oct 18, 2023
…enkov Use `YYYY-MM-DDTHH_MM_SS` as datetime format for ICE dump files Windows paths do not support `:`, so use a datetime format in ICE dump paths that Windows will accept. CC rust-lang#116809, fix rust-lang#115180.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
C-bug
Category: This is a bug.
O-windows
Operating system: Windows
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
While investigating the ICE in #115179, I saw that every
rustc
attempt at writing the ICE details to a file (first implemented in #108714) would fail on my Windows machine with error messages of this kind:The timestamp format used for the file name separates time components with colons, and Windows is generally finicky about having colons in file names since it is already employed as the drive unit delimiter.
Could there be a change in the file name format for better compatibility, at least when running rustc on a Windows host?
Meta
rustc --version --verbose
:The text was updated successfully, but these errors were encountered: