We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e3aaab commit 7cf90d0Copy full SHA for 7cf90d0
src/librustc_incremental/persist/fs.rs
@@ -240,10 +240,12 @@ pub fn prepare_session_directory(tcx: TyCtxt) -> Result<bool, ()> {
240
source_directory.display());
241
242
if !allows_links {
243
- tcx.sess.warn(&format!("Hard linking files in the incremental compilation
244
- cache failed. Copying files instead. Consider moving the cache directory to a
245
- file system which supports hard linking in session dir `{}`"
246
- , session_dir.display())
+ tcx.sess.warn(&format!("Hard linking files in the incremental \
+ compilation cache failed. Copying files \
+ instead. Consider moving the cache \
+ directory to a file system which supports \
247
+ hard linking in session dir `{}`",
248
+ session_dir.display())
249
);
250
}
251
0 commit comments