diff options
| author | Zephaniah Ong <zealorez@gmail.com> | 2023-02-09 16:01:29 +0800 |
|---|---|---|
| committer | Zephaniah Ong <zealorez@gmail.com> | 2023-02-09 16:01:29 +0800 |
| commit | 41c6c5d4996728b5a635319ef9b077a3d0ccc480 (patch) | |
| tree | 42baf66957705bc8c0ce50605739f95cd9a0eb0a /src/bootstrap/native.rs | |
| parent | ef934d9b632b8ac00276558824664c104b92b5f0 (diff) | |
port over symlink_file function from Build to Config and create symlink for legacy rustfmt path
Diffstat (limited to 'src/bootstrap/native.rs')
| -rw-r--r-- | src/bootstrap/native.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/native.rs b/src/bootstrap/native.rs index 3acc2d4b5c4..07d339c067c 100644 --- a/src/bootstrap/native.rs +++ b/src/bootstrap/native.rs @@ -516,7 +516,7 @@ impl Step for Llvm { let lib_llvm = out_dir.join("build").join("lib").join(lib_name); if !lib_llvm.exists() { - t!(builder.symlink_file("libLLVM.dylib", &lib_llvm)); + t!(builder.build.config.symlink_file("libLLVM.dylib", &lib_llvm)); } } |
