Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
decdb95
symcheck: Store the section name in `SymInfo` if available
tgross35 Aug 7, 2025
ab0def2
symcheck: Ignore symbols in `.debug_gdb_scripts`
tgross35 Aug 7, 2025
36ec648
Remove instances of `allow(improper_ctypes)`
tgross35 Aug 7, 2025
9a81b2a
Start runnning tests for aarch64-pc-windows-msvc
tgross35 Aug 7, 2025
3fb62b9
Prepare for merging from rust-lang/rust
invalid-email-address Aug 9, 2025
bf84878
Merge ref 'ffb9d94dcf4a' from rust-lang/rust
invalid-email-address Aug 9, 2025
531d5aa
symcheck: Skip `__ymm@` symbols on Windows
tgross35 Aug 9, 2025
ba5def8
Add __addhf3, __subhf3, __mulhf3, __{eq,ge,gt,le,lt,ne,unord}hf2
tgross35 Aug 9, 2025
b951b5d
stabilize strict provenance atomic ptr
Kivooeo Aug 15, 2025
ca7a0af
Fix some typos
dns2utf8 Aug 19, 2025
e42c1b1
Stabilize `round_char_boundary` feature
okaneco Aug 22, 2025
202eb0b
Prepare for merging from rust-lang/rust
invalid-email-address Aug 28, 2025
e36d827
Merge ref 'd36f96412516' from rust-lang/rust
invalid-email-address Aug 28, 2025
4edfeb2
compiler: Include span of too huge enum with -Cdebuginfo=2
Enselic Aug 28, 2025
2d0668d
Mark pipe2 supported in Android
maurer Aug 28, 2025
6fd0e50
autoderef final ty is already resolved
lcnr Aug 29, 2025
e3f1e94
std: haiku: fix `B_FIND_PATH_IMAGE_PATH`
GrigorenkoPV Aug 29, 2025
85cefab
std: use a TAIT to define `SplitPaths` on UNIX
joboet Aug 11, 2025
638a52c
Improve librustdoc error when a file creation/modification failed
GuillaumeGomez Aug 29, 2025
19ae976
Rollup merge of #145242 - joboet:tait-split-paths, r=Mark-Simulacrum
tgross35 Aug 30, 2025
ed9e767
Rollup merge of #145467 - Kivooeo:stabilize-strict_provenance_atomic_…
tgross35 Aug 30, 2025
751a9ad
Rollup merge of #145756 - okaneco:stabilize_char_boundary, r=scottmcm
tgross35 Aug 30, 2025
65a846a
Rollup merge of #145967 - Enselic:big-enum-debuginfo-span, r=wesleywiser
tgross35 Aug 30, 2025
4d5ca4c
Rollup merge of #145990 - lcnr:final-ty-no-resolve, r=davidtwco
tgross35 Aug 30, 2025
a7fd14f
Rollup merge of #145991 - GrigorenkoPV:haiku, r=tgross35
tgross35 Aug 30, 2025
b722da9
Rollup merge of #146000 - GuillaumeGomez:rustdoc-error-improvement, r…
tgross35 Aug 30, 2025
98806c8
Rollup merge of #146017 - maurer:pipe2, r=Mark-Simulacrum
tgross35 Aug 30, 2025
319d554
Rollup merge of #146022 - tgross35:update-builtins, r=tgross35
tgross35 Aug 30, 2025
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
Prev Previous commit
Next Next commit
Improve librustdoc error when a file creation/modification failed
  • Loading branch information
GuillaumeGomez committed Aug 29, 2025
commit 638a52c789e92009cf26ed73a4a5bc597814fe7b
4 changes: 3 additions & 1 deletion src/librustdoc/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,9 @@ fn run_renderer<
tcx.dcx().struct_fatal(format!("couldn't generate documentation: {}", e.error));
let file = e.file.display().to_string();
if !file.is_empty() {
msg.note(format!("failed to create or modify \"{file}\""));
msg.note(format!("failed to create or modify {e}"));
} else {
msg.note(format!("failed to create or modify file: {e}"));
}
msg.emit();
}
Expand Down
Loading