@@ -2129,7 +2129,14 @@ fn linker_with_args<'a>(
2129
2129
cmd. add_as_needed ( ) ;
2130
2130
2131
2131
// Local native libraries of all kinds.
2132
- add_local_native_libraries ( cmd, sess, archive_builder_builder, codegen_results, tmpdir) ;
2132
+ add_local_native_libraries (
2133
+ cmd,
2134
+ sess,
2135
+ archive_builder_builder,
2136
+ codegen_results,
2137
+ tmpdir,
2138
+ link_output_kind,
2139
+ ) ;
2133
2140
2134
2141
// Upstream rust crates and their non-dynamic native libraries.
2135
2142
add_upstream_rust_crates (
@@ -2139,10 +2146,18 @@ fn linker_with_args<'a>(
2139
2146
codegen_results,
2140
2147
crate_type,
2141
2148
tmpdir,
2149
+ link_output_kind,
2142
2150
) ;
2143
2151
2144
2152
// Dynamic native libraries from upstream crates.
2145
- add_upstream_native_libraries ( cmd, sess, archive_builder_builder, codegen_results, tmpdir) ;
2153
+ add_upstream_native_libraries (
2154
+ cmd,
2155
+ sess,
2156
+ archive_builder_builder,
2157
+ codegen_results,
2158
+ tmpdir,
2159
+ link_output_kind,
2160
+ ) ;
2146
2161
2147
2162
// Link with the import library generated for any raw-dylib functions.
2148
2163
for ( raw_dylib_name, raw_dylib_imports) in
@@ -2397,6 +2412,7 @@ fn add_native_libs_from_crate(
2397
2412
cnum : CrateNum ,
2398
2413
link_static : bool ,
2399
2414
link_dynamic : bool ,
2415
+ link_output_kind : LinkOutputKind ,
2400
2416
) {
2401
2417
if !sess. opts . unstable_opts . link_native_libraries {
2402
2418
// If `-Zlink-native-libraries=false` is set, then the assumption is that an
@@ -2476,8 +2492,16 @@ fn add_native_libs_from_crate(
2476
2492
}
2477
2493
}
2478
2494
NativeLibKind :: Unspecified => {
2479
- if link_dynamic {
2480
- cmd. link_dylib ( name, verbatim, true ) ;
2495
+ // If we are generating a static binary, prefer static library when the
2496
+ // link kind is unspecified.
2497
+ if !link_output_kind. can_link_dylib ( ) && !sess. target . crt_static_allows_dylibs {
2498
+ if link_static {
2499
+ cmd. link_staticlib ( name, verbatim)
2500
+ }
2501
+ } else {
2502
+ if link_dynamic {
2503
+ cmd. link_dylib ( name, verbatim, true ) ;
2504
+ }
2481
2505
}
2482
2506
}
2483
2507
NativeLibKind :: Framework { as_needed } => {
@@ -2504,6 +2528,7 @@ fn add_local_native_libraries(
2504
2528
archive_builder_builder : & dyn ArchiveBuilderBuilder ,
2505
2529
codegen_results : & CodegenResults ,
2506
2530
tmpdir : & Path ,
2531
+ link_output_kind : LinkOutputKind ,
2507
2532
) {
2508
2533
if sess. opts . unstable_opts . link_native_libraries {
2509
2534
// User-supplied library search paths (-L on the command line). These are the same paths
@@ -2533,6 +2558,7 @@ fn add_local_native_libraries(
2533
2558
LOCAL_CRATE ,
2534
2559
link_static,
2535
2560
link_dynamic,
2561
+ link_output_kind,
2536
2562
) ;
2537
2563
}
2538
2564
@@ -2543,6 +2569,7 @@ fn add_upstream_rust_crates<'a>(
2543
2569
codegen_results : & CodegenResults ,
2544
2570
crate_type : CrateType ,
2545
2571
tmpdir : & Path ,
2572
+ link_output_kind : LinkOutputKind ,
2546
2573
) {
2547
2574
// All of the heavy lifting has previously been accomplished by the
2548
2575
// dependency_format module of the compiler. This is just crawling the
@@ -2620,6 +2647,7 @@ fn add_upstream_rust_crates<'a>(
2620
2647
cnum,
2621
2648
link_static,
2622
2649
link_dynamic,
2650
+ link_output_kind,
2623
2651
) ;
2624
2652
}
2625
2653
}
@@ -2630,6 +2658,7 @@ fn add_upstream_native_libraries(
2630
2658
archive_builder_builder : & dyn ArchiveBuilderBuilder ,
2631
2659
codegen_results : & CodegenResults ,
2632
2660
tmpdir : & Path ,
2661
+ link_output_kind : LinkOutputKind ,
2633
2662
) {
2634
2663
let search_path = OnceCell :: new ( ) ;
2635
2664
for & cnum in & codegen_results. crate_info . used_crates {
@@ -2658,6 +2687,7 @@ fn add_upstream_native_libraries(
2658
2687
cnum,
2659
2688
link_static,
2660
2689
link_dynamic,
2690
+ link_output_kind,
2661
2691
) ;
2662
2692
}
2663
2693
}
0 commit comments