@@ -812,7 +812,7 @@ impl<'a> Builder<'a> {
812
812
format ! ( "CARGO_PROFILE_{}_{}" , profile, name)
813
813
} ;
814
814
815
- // See comment in librustc_llvm /build.rs for why this is necessary, largely llvm-config
815
+ // See comment in rustc_llvm /build.rs for why this is necessary, largely llvm-config
816
816
// needs to not accidentally link to libLLVM in stage0/lib.
817
817
cargo. env ( "REAL_LIBRARY_PATH_VAR" , & util:: dylib_path_var ( ) ) ;
818
818
if let Some ( e) = env:: var_os ( util:: dylib_path_var ( ) ) {
@@ -829,9 +829,9 @@ impl<'a> Builder<'a> {
829
829
// scripts can do less work (i.e. not building/requiring LLVM).
830
830
if cmd == "check" || cmd == "clippy" || cmd == "fix" {
831
831
// If we've not yet built LLVM, or it's stale, then bust
832
- // the librustc_llvm cache. That will always work, even though it
832
+ // the rustc_llvm cache. That will always work, even though it
833
833
// may mean that on the next non-check build we'll need to rebuild
834
- // librustc_llvm . But if LLVM is stale, that'll be a tiny amount
834
+ // rustc_llvm . But if LLVM is stale, that'll be a tiny amount
835
835
// of work comparitively, and we'd likely need to rebuild it anyway,
836
836
// so that's okay.
837
837
if crate :: native:: prebuilt_llvm_config ( self , target) . is_err ( ) {
0 commit comments