File tree 1 file changed +7
-14
lines changed
compiler/rustc_session/src
1 file changed +7
-14
lines changed Original file line number Diff line number Diff line change @@ -63,27 +63,20 @@ impl SearchPath {
63
63
( PathKind :: Framework , stripped)
64
64
} else if let Some ( stripped) = path. strip_prefix ( "all=" ) {
65
65
( PathKind :: All , stripped)
66
- } else if let Some ( stripped) = path. strip_prefix ( "builtin:" ) {
67
- if stripped. contains ( std:: path:: is_separator) {
68
- early_dcx. early_fatal ( "`-L builtin:` does not accept paths" ) ;
69
- }
70
-
71
- let path =
72
- make_target_lib_path ( sysroot, triple. triple ( ) ) . join ( "builtin" ) . join ( stripped) ;
73
- if !path. is_dir ( ) {
74
- early_dcx. early_fatal ( format ! ( "builtin:{stripped} does not exist" ) ) ;
75
- }
76
-
77
- return Self :: new ( PathKind :: All , path) ;
78
66
} else {
79
67
( PathKind :: All , path)
80
68
} ;
81
- if path. is_empty ( ) {
69
+ let dir = match path. strip_prefix ( "@RUSTC_BUILTIN" ) {
70
+ Some ( stripped) => {
71
+ make_target_lib_path ( sysroot, triple. triple ( ) ) . join ( "builtin" ) . join ( stripped)
72
+ }
73
+ None => PathBuf :: from ( path) ,
74
+ } ;
75
+ if dir. as_os_str ( ) . is_empty ( ) {
82
76
#[ allow( rustc:: untranslatable_diagnostic) ] // FIXME: make this translatable
83
77
early_dcx. early_fatal ( "empty search path given via `-L`" ) ;
84
78
}
85
79
86
- let dir = PathBuf :: from ( path) ;
87
80
Self :: new ( kind, dir)
88
81
}
89
82
You can’t perform that action at this time.
0 commit comments