@@ -140,7 +140,12 @@ pub fn link_binary<'a, B: ArchiveBuilder<'a>>(
140
140
// The third parameter is for env vars, used on windows to set up the
141
141
// path for MSVC to find its DLLs, and gcc to find its bundled
142
142
// toolchain
143
- fn get_linker ( sess : & Session , linker : & Path , flavor : LinkerFlavor ) -> Command {
143
+ fn get_linker (
144
+ sess : & Session ,
145
+ linker : & Path ,
146
+ flavor : LinkerFlavor ,
147
+ self_contained : bool ,
148
+ ) -> Command {
144
149
let msvc_tool = windows_registry:: find_tool ( & sess. opts . target_triple . triple ( ) , "link.exe" ) ;
145
150
146
151
// If our linker looks like a batch script on Windows then to execute this
@@ -199,7 +204,7 @@ fn get_linker(sess: &Session, linker: &Path, flavor: LinkerFlavor) -> Command {
199
204
200
205
// The compiler's sysroot often has some bundled tools, so add it to the
201
206
// PATH for the child.
202
- let mut new_path = sess. host_filesearch ( PathKind :: All ) . get_tools_search_paths ( ) ;
207
+ let mut new_path = sess. host_filesearch ( PathKind :: All ) . get_tools_search_paths ( self_contained ) ;
203
208
let mut msvc_changed_path = false ;
204
209
if sess. target . target . options . is_like_msvc {
205
210
if let Some ( ref tool) = msvc_tool {
@@ -551,19 +556,25 @@ fn link_natively<'a, B: ArchiveBuilder<'a>>(
551
556
"Linker does not support -static-pie command line option. Retrying with -static instead."
552
557
) ;
553
558
// Mirror `add_(pre,post)_link_objects` to replace CRT objects.
554
- let fallback = crt_objects_fallback ( sess, crate_type) ;
559
+ let self_contained = crt_objects_fallback ( sess, crate_type) ;
555
560
let opts = & sess. target . target . options ;
556
- let pre_objects =
557
- if fallback { & opts. pre_link_objects_fallback } else { & opts. pre_link_objects } ;
558
- let post_objects =
559
- if fallback { & opts. post_link_objects_fallback } else { & opts. post_link_objects } ;
561
+ let pre_objects = if self_contained {
562
+ & opts. pre_link_objects_fallback
563
+ } else {
564
+ & opts. pre_link_objects
565
+ } ;
566
+ let post_objects = if self_contained {
567
+ & opts. post_link_objects_fallback
568
+ } else {
569
+ & opts. post_link_objects
570
+ } ;
560
571
let get_objects = |objects : & CrtObjects , kind| {
561
572
objects
562
573
. get ( & kind)
563
574
. iter ( )
564
575
. copied ( )
565
576
. flatten ( )
566
- . map ( |obj| get_object_file_path ( sess, obj) . into_os_string ( ) )
577
+ . map ( |obj| get_object_file_path ( sess, obj, self_contained ) . into_os_string ( ) )
567
578
. collect :: < Vec < _ > > ( )
568
579
} ;
569
580
let pre_objects_static_pie = get_objects ( pre_objects, LinkOutputKind :: StaticPicExe ) ;
@@ -1066,9 +1077,11 @@ fn get_crt_libs_path(sess: &Session) -> Option<PathBuf> {
1066
1077
}
1067
1078
}
1068
1079
1069
- fn get_object_file_path ( sess : & Session , name : & str ) -> PathBuf {
1080
+ fn get_object_file_path ( sess : & Session , name : & str , self_contained : bool ) -> PathBuf {
1070
1081
// prefer system {,dll}crt2.o libs, see get_crt_libs_path comment for more details
1071
- if sess. target . target . llvm_target . contains ( "windows-gnu" ) {
1082
+ if sess. opts . debugging_opts . link_self_contained . is_none ( )
1083
+ && sess. target . target . llvm_target . contains ( "windows-gnu" )
1084
+ {
1072
1085
if let Some ( compiler_libs_path) = get_crt_libs_path ( sess) {
1073
1086
let file_path = compiler_libs_path. join ( name) ;
1074
1087
if file_path. exists ( ) {
@@ -1081,9 +1094,12 @@ fn get_object_file_path(sess: &Session, name: &str) -> PathBuf {
1081
1094
if file_path. exists ( ) {
1082
1095
return file_path;
1083
1096
}
1084
- let file_path = fs. get_selfcontained_lib_path ( ) . join ( name) ;
1085
- if file_path. exists ( ) {
1086
- return file_path;
1097
+ // Special directory with objects used only in self-contained linkage mode
1098
+ if self_contained {
1099
+ let file_path = fs. get_self_contained_lib_path ( ) . join ( name) ;
1100
+ if file_path. exists ( ) {
1101
+ return file_path;
1102
+ }
1087
1103
}
1088
1104
for search_path in fs. search_paths ( ) {
1089
1105
let file_path = search_path. dir . join ( name) ;
@@ -1268,6 +1284,10 @@ fn link_output_kind(sess: &Session, crate_type: CrateType) -> LinkOutputKind {
1268
1284
/// Whether we link to our own CRT objects instead of relying on gcc to pull them.
1269
1285
/// We only provide such support for a very limited number of targets.
1270
1286
fn crt_objects_fallback ( sess : & Session , crate_type : CrateType ) -> bool {
1287
+ if let Some ( self_contained) = sess. opts . debugging_opts . link_self_contained {
1288
+ return self_contained;
1289
+ }
1290
+
1271
1291
match sess. target . target . options . crt_objects_fallback {
1272
1292
// FIXME: Find a better heuristic for "native musl toolchain is available",
1273
1293
// based on host and linker path, for example.
@@ -1287,12 +1307,13 @@ fn add_pre_link_objects(
1287
1307
cmd : & mut dyn Linker ,
1288
1308
sess : & Session ,
1289
1309
link_output_kind : LinkOutputKind ,
1290
- fallback : bool ,
1310
+ self_contained : bool ,
1291
1311
) {
1292
1312
let opts = & sess. target . target . options ;
1293
- let objects = if fallback { & opts. pre_link_objects_fallback } else { & opts. pre_link_objects } ;
1313
+ let objects =
1314
+ if self_contained { & opts. pre_link_objects_fallback } else { & opts. pre_link_objects } ;
1294
1315
for obj in objects. get ( & link_output_kind) . iter ( ) . copied ( ) . flatten ( ) {
1295
- cmd. add_object ( & get_object_file_path ( sess, obj) ) ;
1316
+ cmd. add_object ( & get_object_file_path ( sess, obj, self_contained ) ) ;
1296
1317
}
1297
1318
}
1298
1319
@@ -1301,12 +1322,13 @@ fn add_post_link_objects(
1301
1322
cmd : & mut dyn Linker ,
1302
1323
sess : & Session ,
1303
1324
link_output_kind : LinkOutputKind ,
1304
- fallback : bool ,
1325
+ self_contained : bool ,
1305
1326
) {
1306
1327
let opts = & sess. target . target . options ;
1307
- let objects = if fallback { & opts. post_link_objects_fallback } else { & opts. post_link_objects } ;
1328
+ let objects =
1329
+ if self_contained { & opts. post_link_objects_fallback } else { & opts. post_link_objects } ;
1308
1330
for obj in objects. get ( & link_output_kind) . iter ( ) . copied ( ) . flatten ( ) {
1309
- cmd. add_object ( & get_object_file_path ( sess, obj) ) ;
1331
+ cmd. add_object ( & get_object_file_path ( sess, obj, self_contained ) ) ;
1310
1332
}
1311
1333
}
1312
1334
@@ -1468,9 +1490,12 @@ fn link_local_crate_native_libs_and_dependent_crate_libs<'a, B: ArchiveBuilder<'
1468
1490
}
1469
1491
1470
1492
/// Add sysroot and other globally set directories to the directory search list.
1471
- fn add_library_search_dirs ( cmd : & mut dyn Linker , sess : & Session ) {
1493
+ fn add_library_search_dirs ( cmd : & mut dyn Linker , sess : & Session , self_contained : bool ) {
1472
1494
// Prefer system mingw-w64 libs, see get_crt_libs_path comment for more details.
1473
- if cfg ! ( windows) && sess. target . target . llvm_target . contains ( "windows-gnu" ) {
1495
+ if sess. opts . debugging_opts . link_self_contained . is_none ( )
1496
+ && cfg ! ( windows)
1497
+ && sess. target . target . llvm_target . contains ( "windows-gnu" )
1498
+ {
1474
1499
if let Some ( compiler_libs_path) = get_crt_libs_path ( sess) {
1475
1500
cmd. include_path ( & compiler_libs_path) ;
1476
1501
}
@@ -1481,8 +1506,11 @@ fn add_library_search_dirs(cmd: &mut dyn Linker, sess: &Session) {
1481
1506
let lib_path = sess. target_filesearch ( PathKind :: All ) . get_lib_path ( ) ;
1482
1507
cmd. include_path ( & fix_windows_verbatim_for_gcc ( & lib_path) ) ;
1483
1508
1484
- let lib_path = sess. target_filesearch ( PathKind :: All ) . get_selfcontained_lib_path ( ) ;
1485
- cmd. include_path ( & fix_windows_verbatim_for_gcc ( & lib_path) ) ;
1509
+ // Special directory with libraries used only in self-contained linkage mode
1510
+ if self_contained {
1511
+ let lib_path = sess. target_filesearch ( PathKind :: All ) . get_self_contained_lib_path ( ) ;
1512
+ cmd. include_path ( & fix_windows_verbatim_for_gcc ( & lib_path) ) ;
1513
+ }
1486
1514
}
1487
1515
1488
1516
/// Add options making relocation sections in the produced ELF files read-only
@@ -1545,13 +1573,13 @@ fn linker_with_args<'a, B: ArchiveBuilder<'a>>(
1545
1573
codegen_results : & CodegenResults ,
1546
1574
target_cpu : & str ,
1547
1575
) -> Command {
1548
- let base_cmd = get_linker ( sess, path, flavor) ;
1576
+ let crt_objects_fallback = crt_objects_fallback ( sess, crate_type) ;
1577
+ let base_cmd = get_linker ( sess, path, flavor, crt_objects_fallback) ;
1549
1578
// FIXME: Move `/LIBPATH` addition for uwp targets from the linker construction
1550
1579
// to the linker args construction.
1551
1580
assert ! ( base_cmd. get_args( ) . is_empty( ) || sess. target. target. target_vendor == "uwp" ) ;
1552
1581
let cmd = & mut * codegen_results. linker_info . to_linker ( base_cmd, & sess, flavor, target_cpu) ;
1553
1582
let link_output_kind = link_output_kind ( sess, crate_type) ;
1554
- let crt_objects_fallback = crt_objects_fallback ( sess, crate_type) ;
1555
1583
1556
1584
// NO-OPT-OUT, OBJECT-FILES-MAYBE, CUSTOMIZATION-POINT
1557
1585
add_pre_link_args ( cmd, sess, flavor) ;
@@ -1597,7 +1625,7 @@ fn linker_with_args<'a, B: ArchiveBuilder<'a>>(
1597
1625
1598
1626
// NO-OPT-OUT, OBJECT-FILES-NO, AUDIT-ORDER
1599
1627
// FIXME: Order-dependent, at least relatively to other args adding searh directories.
1600
- add_library_search_dirs ( cmd, sess) ;
1628
+ add_library_search_dirs ( cmd, sess, crt_objects_fallback ) ;
1601
1629
1602
1630
// OBJECT-FILES-YES
1603
1631
add_local_crate_regular_objects ( cmd, codegen_results) ;
0 commit comments