@@ -3,9 +3,8 @@ use rustc_fs_util::fix_windows_verbatim_for_gcc;
3
3
use rustc_hir:: def_id:: CrateNum ;
4
4
use rustc_middle:: middle:: cstore:: { EncodedMetadata , LibSource , NativeLibrary , NativeLibraryKind } ;
5
5
use rustc_middle:: middle:: dependency_format:: Linkage ;
6
- use rustc_session:: config:: {
7
- self , CFGuard , DebugInfo , OutputFilenames , OutputType , PrintRequest , Sanitizer ,
8
- } ;
6
+ use rustc_session:: config:: { self , CFGuard , CrateType , DebugInfo } ;
7
+ use rustc_session:: config:: { OutputFilenames , OutputType , PrintRequest , Sanitizer } ;
9
8
use rustc_session:: output:: { check_file_is_writeable, invalid_output_for_target, out_filename} ;
10
9
use rustc_session:: search_paths:: PathKind ;
11
10
/// For all the linkers we support, and information they might
@@ -55,7 +54,7 @@ pub fn link_binary<'a, B: ArchiveBuilder<'a>>(
55
54
// Ignore executable crates if we have -Z no-codegen, as they will error.
56
55
if ( sess. opts . debugging_opts . no_codegen || !sess. opts . output_types . should_codegen ( ) )
57
56
&& !output_metadata
58
- && crate_type == config :: CrateType :: Executable
57
+ && crate_type == CrateType :: Executable
59
58
{
60
59
continue ;
61
60
}
@@ -82,7 +81,7 @@ pub fn link_binary<'a, B: ArchiveBuilder<'a>>(
82
81
if outputs. outputs . should_codegen ( ) {
83
82
let out_filename = out_filename ( sess, crate_type, outputs, crate_name) ;
84
83
match crate_type {
85
- config :: CrateType :: Rlib => {
84
+ CrateType :: Rlib => {
86
85
let _timer = sess. timer ( "link_rlib" ) ;
87
86
link_rlib :: < B > (
88
87
sess,
@@ -93,7 +92,7 @@ pub fn link_binary<'a, B: ArchiveBuilder<'a>>(
93
92
)
94
93
. build ( ) ;
95
94
}
96
- config :: CrateType :: Staticlib => {
95
+ CrateType :: Staticlib => {
97
96
link_staticlib :: < B > ( sess, codegen_results, & out_filename, & tmpdir) ;
98
97
}
99
98
_ => {
@@ -236,10 +235,10 @@ pub fn each_linked_rlib(
236
235
let mut fmts = None ;
237
236
for ( ty, list) in info. dependency_formats . iter ( ) {
238
237
match ty {
239
- config :: CrateType :: Executable
240
- | config :: CrateType :: Staticlib
241
- | config :: CrateType :: Cdylib
242
- | config :: CrateType :: ProcMacro => {
238
+ CrateType :: Executable
239
+ | CrateType :: Staticlib
240
+ | CrateType :: Cdylib
241
+ | CrateType :: ProcMacro => {
243
242
fmts = Some ( list) ;
244
243
break ;
245
244
}
@@ -461,7 +460,7 @@ fn link_staticlib<'a, B: ArchiveBuilder<'a>>(
461
460
// links to all upstream files as well.
462
461
fn link_natively < ' a , B : ArchiveBuilder < ' a > > (
463
462
sess : & ' a Session ,
464
- crate_type : config :: CrateType ,
463
+ crate_type : CrateType ,
465
464
out_filename : & Path ,
466
465
codegen_results : & CodegenResults ,
467
466
tmpdir : & Path ,
@@ -664,13 +663,13 @@ fn link_natively<'a, B: ArchiveBuilder<'a>>(
664
663
}
665
664
}
666
665
667
- fn link_sanitizer_runtime ( sess : & Session , crate_type : config :: CrateType , linker : & mut dyn Linker ) {
666
+ fn link_sanitizer_runtime ( sess : & Session , crate_type : CrateType , linker : & mut dyn Linker ) {
668
667
let sanitizer = match & sess. opts . debugging_opts . sanitizer {
669
668
Some ( s) => s,
670
669
None => return ,
671
670
} ;
672
671
673
- if crate_type != config :: CrateType :: Executable {
672
+ if crate_type != CrateType :: Executable {
674
673
return ;
675
674
}
676
675
@@ -826,7 +825,7 @@ fn preserve_objects_for_their_debuginfo(sess: &Session) -> bool {
826
825
. crate_types
827
826
. borrow ( )
828
827
. iter ( )
829
- . any ( |& x| x != config :: CrateType :: Rlib && x != config :: CrateType :: Staticlib ) ;
828
+ . any ( |& x| x != CrateType :: Rlib && x != CrateType :: Staticlib ) ;
830
829
if !output_linked {
831
830
return false ;
832
831
}
@@ -1132,8 +1131,8 @@ fn exec_linker(
1132
1131
}
1133
1132
1134
1133
/// Add begin object files defined by the target spec.
1135
- fn add_pre_link_objects ( cmd : & mut dyn Linker , sess : & Session , crate_type : config :: CrateType ) {
1136
- let pre_link_objects = if crate_type == config :: CrateType :: Executable {
1134
+ fn add_pre_link_objects ( cmd : & mut dyn Linker , sess : & Session , crate_type : CrateType ) {
1135
+ let pre_link_objects = if crate_type == CrateType :: Executable {
1137
1136
& sess. target . target . options . pre_link_objects_exe
1138
1137
} else {
1139
1138
& sess. target . target . options . pre_link_objects_dll
@@ -1142,15 +1141,15 @@ fn add_pre_link_objects(cmd: &mut dyn Linker, sess: &Session, crate_type: config
1142
1141
cmd. add_object ( & get_object_file_path ( sess, obj) ) ;
1143
1142
}
1144
1143
1145
- if crate_type == config :: CrateType :: Executable && sess. crt_static ( Some ( crate_type) ) {
1144
+ if crate_type == CrateType :: Executable && sess. crt_static ( Some ( crate_type) ) {
1146
1145
for obj in & sess. target . target . options . pre_link_objects_exe_crt {
1147
1146
cmd. add_object ( & get_object_file_path ( sess, obj) ) ;
1148
1147
}
1149
1148
}
1150
1149
}
1151
1150
1152
1151
/// Add end object files defined by the target spec.
1153
- fn add_post_link_objects ( cmd : & mut dyn Linker , sess : & Session , crate_type : config :: CrateType ) {
1152
+ fn add_post_link_objects ( cmd : & mut dyn Linker , sess : & Session , crate_type : CrateType ) {
1154
1153
for obj in & sess. target . target . options . post_link_objects {
1155
1154
cmd. add_object ( & get_object_file_path ( sess, obj) ) ;
1156
1155
}
@@ -1167,7 +1166,7 @@ fn add_pre_link_args(
1167
1166
cmd : & mut dyn Linker ,
1168
1167
sess : & Session ,
1169
1168
flavor : LinkerFlavor ,
1170
- crate_type : config :: CrateType ,
1169
+ crate_type : CrateType ,
1171
1170
) {
1172
1171
if let Some ( args) = sess. target . target . options . pre_link_args . get ( & flavor) {
1173
1172
cmd. args ( args) ;
@@ -1197,13 +1196,13 @@ fn add_late_link_args(
1197
1196
cmd : & mut dyn Linker ,
1198
1197
sess : & Session ,
1199
1198
flavor : LinkerFlavor ,
1200
- crate_type : config :: CrateType ,
1199
+ crate_type : CrateType ,
1201
1200
codegen_results : & CodegenResults ,
1202
1201
) {
1203
1202
if let Some ( args) = sess. target . target . options . late_link_args . get ( & flavor) {
1204
1203
cmd. args ( args) ;
1205
1204
}
1206
- let any_dynamic_crate = crate_type == config :: CrateType :: Dylib
1205
+ let any_dynamic_crate = crate_type == CrateType :: Dylib
1207
1206
|| codegen_results. crate_info . dependency_formats . iter ( ) . any ( |( ty, list) | {
1208
1207
* ty == crate_type && list. iter ( ) . any ( |& linkage| linkage == Linkage :: Dynamic )
1209
1208
} ) ;
@@ -1243,13 +1242,13 @@ fn add_local_crate_allocator_objects(cmd: &mut dyn Linker, codegen_results: &Cod
1243
1242
/// Add object files containing metadata for the current crate.
1244
1243
fn add_local_crate_metadata_objects (
1245
1244
cmd : & mut dyn Linker ,
1246
- crate_type : config :: CrateType ,
1245
+ crate_type : CrateType ,
1247
1246
codegen_results : & CodegenResults ,
1248
1247
) {
1249
1248
// When linking a dynamic library, we put the metadata into a section of the
1250
1249
// executable. This metadata is in a separate object file from the main
1251
1250
// object file, so we link that in here.
1252
- if crate_type == config :: CrateType :: Dylib || crate_type == config :: CrateType :: ProcMacro {
1251
+ if crate_type == CrateType :: Dylib || crate_type == CrateType :: ProcMacro {
1253
1252
if let Some ( obj) = codegen_results. metadata_module . as_ref ( ) . and_then ( |m| m. object . as_ref ( ) )
1254
1253
{
1255
1254
cmd. add_object ( obj) ;
@@ -1263,7 +1262,7 @@ fn add_local_crate_metadata_objects(
1263
1262
fn link_local_crate_native_libs_and_dependent_crate_libs < ' a , B : ArchiveBuilder < ' a > > (
1264
1263
cmd : & mut dyn Linker ,
1265
1264
sess : & ' a Session ,
1266
- crate_type : config :: CrateType ,
1265
+ crate_type : CrateType ,
1267
1266
codegen_results : & CodegenResults ,
1268
1267
tmpdir : & Path ,
1269
1268
) {
@@ -1326,10 +1325,10 @@ fn add_position_independent_executable_args(
1326
1325
cmd : & mut dyn Linker ,
1327
1326
sess : & Session ,
1328
1327
flavor : LinkerFlavor ,
1329
- crate_type : config :: CrateType ,
1328
+ crate_type : CrateType ,
1330
1329
codegen_results : & CodegenResults ,
1331
1330
) {
1332
- if crate_type != config :: CrateType :: Executable {
1331
+ if crate_type != CrateType :: Executable {
1333
1332
return ;
1334
1333
}
1335
1334
@@ -1407,7 +1406,7 @@ fn linker_with_args<'a, B: ArchiveBuilder<'a>>(
1407
1406
path : & Path ,
1408
1407
flavor : LinkerFlavor ,
1409
1408
sess : & ' a Session ,
1410
- crate_type : config :: CrateType ,
1409
+ crate_type : CrateType ,
1411
1410
tmpdir : & Path ,
1412
1411
out_filename : & Path ,
1413
1412
codegen_results : & CodegenResults ,
@@ -1463,7 +1462,7 @@ fn linker_with_args<'a, B: ArchiveBuilder<'a>>(
1463
1462
cmd. output_filename ( out_filename) ;
1464
1463
1465
1464
// OBJECT-FILES-NO, AUDIT-ORDER
1466
- if crate_type == config :: CrateType :: Executable && sess. target . target . options . is_like_windows {
1465
+ if crate_type == CrateType :: Executable && sess. target . target . options . is_like_windows {
1467
1466
if let Some ( ref s) = codegen_results. windows_subsystem {
1468
1467
cmd. subsystem ( s) ;
1469
1468
}
@@ -1486,7 +1485,7 @@ fn linker_with_args<'a, B: ArchiveBuilder<'a>>(
1486
1485
// Try to strip as much out of the generated object by removing unused
1487
1486
// sections if possible. See more comments in linker.rs
1488
1487
if !sess. opts . cg . link_dead_code {
1489
- let keep_metadata = crate_type == config :: CrateType :: Dylib ;
1488
+ let keep_metadata = crate_type == CrateType :: Dylib ;
1490
1489
cmd. gc_sections ( keep_metadata) ;
1491
1490
}
1492
1491
@@ -1522,10 +1521,10 @@ fn linker_with_args<'a, B: ArchiveBuilder<'a>>(
1522
1521
1523
1522
// NO-OPT-OUT, OBJECT-FILES-NO, AUDIT-ORDER
1524
1523
// Tell the linker what we're doing.
1525
- if crate_type != config :: CrateType :: Executable {
1524
+ if crate_type != CrateType :: Executable {
1526
1525
cmd. build_dylib ( out_filename) ;
1527
1526
}
1528
- if crate_type == config :: CrateType :: Executable && sess. crt_static ( Some ( crate_type) ) {
1527
+ if crate_type == CrateType :: Executable && sess. crt_static ( Some ( crate_type) ) {
1529
1528
cmd. build_static_executable ( ) ;
1530
1529
}
1531
1530
@@ -1619,7 +1618,7 @@ fn add_upstream_rust_crates<'a, B: ArchiveBuilder<'a>>(
1619
1618
cmd : & mut dyn Linker ,
1620
1619
sess : & ' a Session ,
1621
1620
codegen_results : & CodegenResults ,
1622
- crate_type : config :: CrateType ,
1621
+ crate_type : CrateType ,
1623
1622
tmpdir : & Path ,
1624
1623
) {
1625
1624
// All of the heavy lifting has previously been accomplished by the
@@ -1780,7 +1779,7 @@ fn add_upstream_rust_crates<'a, B: ArchiveBuilder<'a>>(
1780
1779
sess : & ' a Session ,
1781
1780
codegen_results : & CodegenResults ,
1782
1781
tmpdir : & Path ,
1783
- crate_type : config :: CrateType ,
1782
+ crate_type : CrateType ,
1784
1783
cnum : CrateNum ,
1785
1784
) {
1786
1785
let src = & codegen_results. crate_info . used_crate_source [ & cnum] ;
@@ -1796,7 +1795,7 @@ fn add_upstream_rust_crates<'a, B: ArchiveBuilder<'a>>(
1796
1795
1797
1796
if ( !are_upstream_rust_objects_already_included ( sess)
1798
1797
|| ignored_for_lto ( sess, & codegen_results. crate_info , cnum) )
1799
- && crate_type != config :: CrateType :: Dylib
1798
+ && crate_type != CrateType :: Dylib
1800
1799
&& !skip_native
1801
1800
{
1802
1801
cmd. link_rlib ( & fix_windows_verbatim_for_gcc ( cratepath) ) ;
@@ -1857,7 +1856,7 @@ fn add_upstream_rust_crates<'a, B: ArchiveBuilder<'a>>(
1857
1856
// Note, though, that we don't want to include the whole of a
1858
1857
// compiler-builtins crate (e.g., compiler-rt) because it'll get
1859
1858
// repeatedly linked anyway.
1860
- if crate_type == config :: CrateType :: Dylib
1859
+ if crate_type == CrateType :: Dylib
1861
1860
&& codegen_results. crate_info . compiler_builtins != Some ( cnum)
1862
1861
{
1863
1862
cmd. link_whole_rlib ( & fix_windows_verbatim_for_gcc ( & dst) ) ;
@@ -1905,7 +1904,7 @@ fn add_upstream_native_libraries(
1905
1904
cmd : & mut dyn Linker ,
1906
1905
sess : & Session ,
1907
1906
codegen_results : & CodegenResults ,
1908
- crate_type : config :: CrateType ,
1907
+ crate_type : CrateType ,
1909
1908
) {
1910
1909
// Be sure to use a topological sorting of crates because there may be
1911
1910
// interdependencies between native libraries. When passing -nodefaultlibs,
0 commit comments