File tree 4 files changed +60
-0
lines changed
4 files changed +60
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,8 @@ pub struct TargetInfo {
39
39
pub rustflags : Vec < String > ,
40
40
/// Extra flags to pass to `rustdoc`, see `env_args`.
41
41
pub rustdocflags : Vec < String > ,
42
+ // Remove this when it hits stable (1.41).
43
+ pub supports_pathless_extern : Option < bool > ,
42
44
}
43
45
44
46
/// Kind of each file generated by a Unit, part of `FileType`.
@@ -101,6 +103,13 @@ impl TargetInfo {
101
103
. args ( & rustflags)
102
104
. env_remove ( "RUSTC_LOG" ) ;
103
105
106
+ let mut pathless_test = process. clone ( ) ;
107
+ pathless_test. args ( & [ "--extern" , "proc_macro" ] ) ;
108
+ let supports_pathless_extern = match kind {
109
+ CompileKind :: Host => Some ( rustc. cached_output ( & pathless_test) . is_ok ( ) ) ,
110
+ _ => None ,
111
+ } ;
112
+
104
113
if let CompileKind :: Target ( target) = kind {
105
114
process. arg ( "--target" ) . arg ( target. rustc_target ( ) ) ;
106
115
}
@@ -183,6 +192,7 @@ impl TargetInfo {
183
192
"RUSTDOCFLAGS" ,
184
193
) ?,
185
194
cfg,
195
+ supports_pathless_extern,
186
196
} )
187
197
}
188
198
Original file line number Diff line number Diff line change @@ -1010,6 +1010,17 @@ pub fn extern_args<'a>(
1010
1010
link_to ( & dep, dep. extern_crate_name , dep. noprelude ) ?;
1011
1011
}
1012
1012
}
1013
+ if unit. target . proc_macro ( )
1014
+ && cx
1015
+ . bcx
1016
+ . info ( CompileKind :: Host )
1017
+ . supports_pathless_extern
1018
+ . unwrap ( )
1019
+ {
1020
+ // Automatically import `proc_macro`.
1021
+ result. push ( OsString :: from ( "--extern" ) ) ;
1022
+ result. push ( OsString :: from ( "proc_macro" ) ) ;
1023
+ }
1013
1024
1014
1025
Ok ( result)
1015
1026
}
Original file line number Diff line number Diff line change @@ -440,3 +440,37 @@ Caused by:
440
440
. with_status ( 101 )
441
441
. run ( ) ;
442
442
}
443
+
444
+ #[ cargo_test]
445
+ fn proc_macro_extern_prelude ( ) {
446
+ if !is_nightly ( ) {
447
+ // remove once pathless `--extern` hits stable (1.41)
448
+ return ;
449
+ }
450
+ // Check that proc_macro is in the extern prelude.
451
+ let p = project ( )
452
+ . file (
453
+ "Cargo.toml" ,
454
+ r#"
455
+ [package]
456
+ name = "foo"
457
+ version = "0.1.0"
458
+ edition = "2018"
459
+ [lib]
460
+ proc-macro = true
461
+ "# ,
462
+ )
463
+ . file (
464
+ "src/lib.rs" ,
465
+ r#"
466
+ use proc_macro::TokenStream;
467
+ #[proc_macro]
468
+ pub fn foo(input: TokenStream) -> TokenStream {
469
+ "".parse().unwrap()
470
+ }
471
+ "# ,
472
+ )
473
+ . build ( ) ;
474
+ p. cargo ( "test" ) . run ( ) ;
475
+ p. cargo ( "doc" ) . run ( ) ;
476
+ }
Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ use std::env;
6
6
7
7
#[ cargo_test]
8
8
fn rustc_info_cache ( ) {
9
+ if !cargo_test_support:: is_nightly ( ) {
10
+ // remove once pathless `--extern` hits stable (1.41)
11
+ return ;
12
+ }
13
+
9
14
let p = project ( )
10
15
. file ( "src/main.rs" , r#"fn main() { println!("hello"); }"# )
11
16
. build ( ) ;
You can’t perform that action at this time.
0 commit comments