1
1
#![ feature( rustc_private) ]
2
+ #![ deny( warnings) ]
2
3
3
4
extern crate rustc_codegen_ssa;
4
5
extern crate rustc_errors;
@@ -15,44 +16,28 @@ use rustc_codegen_ssa::back::linker::LinkerInfo;
15
16
use rustc_codegen_ssa:: traits:: CodegenBackend ;
16
17
use rustc_codegen_ssa:: { CodegenResults , CrateInfo } ;
17
18
use rustc_data_structures:: fx:: FxHashMap ;
18
- use rustc_data_structures:: sync:: MetadataRef ;
19
19
use rustc_errors:: ErrorReported ;
20
- use rustc_middle:: dep_graph:: DepGraph ;
21
20
use rustc_middle:: dep_graph:: { WorkProduct , WorkProductId } ;
22
- use rustc_middle:: middle:: cstore:: { EncodedMetadata , MetadataLoader , MetadataLoaderDyn } ;
23
- use rustc_middle:: ty:: query:: Providers ;
21
+ use rustc_middle:: middle:: cstore:: EncodedMetadata ;
24
22
use rustc_middle:: ty:: TyCtxt ;
25
23
use rustc_session:: config:: OutputFilenames ;
26
24
use rustc_session:: Session ;
27
- use rustc_target:: spec:: Target ;
28
25
use std:: any:: Any ;
29
- use std:: path:: Path ;
30
26
31
27
struct TheBackend ;
32
28
33
29
impl CodegenBackend for TheBackend {
34
- fn metadata_loader ( & self ) -> Box < MetadataLoaderDyn > {
35
- Box :: new ( rustc_codegen_ssa:: back:: metadata:: DefaultMetadataLoader )
36
- }
37
-
38
- fn provide ( & self , providers : & mut Providers ) { }
39
- fn provide_extern ( & self , providers : & mut Providers ) { }
40
-
41
30
fn codegen_crate < ' a , ' tcx > (
42
31
& self ,
43
32
tcx : TyCtxt < ' tcx > ,
44
33
metadata : EncodedMetadata ,
45
34
_need_metadata_module : bool ,
46
35
) -> Box < dyn Any > {
47
- use rustc_hir:: def_id:: LOCAL_CRATE ;
48
-
49
36
Box :: new ( CodegenResults {
50
- crate_name : tcx. crate_name ( LOCAL_CRATE ) ,
51
37
modules : vec ! [ ] ,
52
38
allocator_module : None ,
53
39
metadata_module : None ,
54
40
metadata,
55
- windows_subsystem : None ,
56
41
linker_info : LinkerInfo :: new ( tcx, "fake_target_cpu" . to_string ( ) ) ,
57
42
crate_info : CrateInfo :: new ( tcx) ,
58
43
} )
@@ -77,7 +62,7 @@ impl CodegenBackend for TheBackend {
77
62
) -> Result < ( ) , ErrorReported > {
78
63
use rustc_session:: { config:: CrateType , output:: out_filename} ;
79
64
use std:: io:: Write ;
80
- let crate_name = codegen_results. crate_name ;
65
+ let crate_name = codegen_results. crate_info . local_crate_name ;
81
66
for & crate_type in sess. opts . crate_types . iter ( ) {
82
67
if crate_type != CrateType :: Rlib {
83
68
sess. fatal ( & format ! ( "Crate type is {:?}" , crate_type) ) ;
0 commit comments