diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-10-06 11:06:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-06 11:06:57 +0200 |
| commit | aa546f9a7366029fe97e4f38c4ff4c1c7cd68d02 (patch) | |
| tree | 23c0784ae3464cc41ad36f167f6d3a1d2dc39abc | |
| parent | 9aaebd481a63df4673691dfd35f9a7eda5c51724 (diff) | |
| parent | 4f50efd1329f430998231f018c2cf61bfe0db449 (diff) | |
| download | rust-aa546f9a7366029fe97e4f38c4ff4c1c7cd68d02.tar.gz rust-aa546f9a7366029fe97e4f38c4ff4c1c7cd68d02.zip | |
Rollup merge of #131279 - onur-ozkan:remove-host-symlink, r=Noratrieb
update "build/host" symlink comment It's needed and can't be removed, so make it clear where it's needed.
| -rw-r--r-- | src/bootstrap/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/src/lib.rs b/src/bootstrap/src/lib.rs index 75659f46431..bcd6b07f2a2 100644 --- a/src/bootstrap/src/lib.rs +++ b/src/bootstrap/src/lib.rs @@ -470,7 +470,7 @@ impl Build { crate::core::metadata::build(&mut build); } - // Make a symbolic link so we can use a consistent directory in the documentation. + // Create symbolic link to use host sysroot from a consistent path (e.g., in the rust-analyzer config file). let build_triple = build.out.join(build.build); t!(fs::create_dir_all(&build_triple)); let host = build.out.join("host"); |
