@@ -266,7 +266,12 @@ pub trait Linker {
266
266
fn is_cc ( & self ) -> bool {
267
267
false
268
268
}
269
- fn set_output_kind ( & mut self , output_kind : LinkOutputKind , out_filename : & Path ) ;
269
+ fn set_output_kind (
270
+ & mut self ,
271
+ output_kind : LinkOutputKind ,
272
+ crate_type : CrateType ,
273
+ out_filename : & Path ,
274
+ ) ;
270
275
fn link_dylib_by_name ( & mut self , _name : & str , _verbatim : bool , _as_needed : bool ) {
271
276
bug ! ( "dylib linked with unsupported linker" )
272
277
}
@@ -387,7 +392,7 @@ impl<'a> GccLinker<'a> {
387
392
] ) ;
388
393
}
389
394
390
- fn build_dylib ( & mut self , out_filename : & Path ) {
395
+ fn build_dylib ( & mut self , crate_type : CrateType , out_filename : & Path ) {
391
396
// On mac we need to tell the linker to let this library be rpathed
392
397
if self . sess . target . is_like_osx {
393
398
if !self . is_ld {
@@ -418,7 +423,7 @@ impl<'a> GccLinker<'a> {
418
423
let mut out_implib = OsString :: from ( "--out-implib=" ) ;
419
424
out_implib. push ( out_filename. with_file_name ( implib_name) ) ;
420
425
self . link_arg ( out_implib) ;
421
- } else {
426
+ } else if crate_type == CrateType :: Dylib {
422
427
// When dylibs are linked by a full path this value will get into `DT_NEEDED`
423
428
// instead of the full path, so the library can be later found in some other
424
429
// location than that specific path.
@@ -465,7 +470,12 @@ impl<'a> Linker for GccLinker<'a> {
465
470
!self . is_ld
466
471
}
467
472
468
- fn set_output_kind ( & mut self , output_kind : LinkOutputKind , out_filename : & Path ) {
473
+ fn set_output_kind (
474
+ & mut self ,
475
+ output_kind : LinkOutputKind ,
476
+ crate_type : CrateType ,
477
+ out_filename : & Path ,
478
+ ) {
469
479
match output_kind {
470
480
LinkOutputKind :: DynamicNoPicExe => {
471
481
if !self . is_ld && self . is_gnu {
@@ -500,10 +510,10 @@ impl<'a> Linker for GccLinker<'a> {
500
510
self . link_args ( & [ "-static" , "-pie" , "--no-dynamic-linker" , "-z" , "text" ] ) ;
501
511
}
502
512
}
503
- LinkOutputKind :: DynamicDylib => self . build_dylib ( out_filename) ,
513
+ LinkOutputKind :: DynamicDylib => self . build_dylib ( crate_type , out_filename) ,
504
514
LinkOutputKind :: StaticDylib => {
505
515
self . link_or_cc_arg ( "-static" ) ;
506
- self . build_dylib ( out_filename) ;
516
+ self . build_dylib ( crate_type , out_filename) ;
507
517
}
508
518
LinkOutputKind :: WasiReactorExe => {
509
519
self . link_args ( & [ "--entry" , "_initialize" ] ) ;
@@ -859,7 +869,12 @@ impl<'a> Linker for MsvcLinker<'a> {
859
869
& mut self . cmd
860
870
}
861
871
862
- fn set_output_kind ( & mut self , output_kind : LinkOutputKind , out_filename : & Path ) {
872
+ fn set_output_kind (
873
+ & mut self ,
874
+ output_kind : LinkOutputKind ,
875
+ _crate_type : CrateType ,
876
+ out_filename : & Path ,
877
+ ) {
863
878
match output_kind {
864
879
LinkOutputKind :: DynamicNoPicExe
865
880
| LinkOutputKind :: DynamicPicExe
@@ -1111,7 +1126,13 @@ impl<'a> Linker for EmLinker<'a> {
1111
1126
true
1112
1127
}
1113
1128
1114
- fn set_output_kind ( & mut self , _output_kind : LinkOutputKind , _out_filename : & Path ) { }
1129
+ fn set_output_kind (
1130
+ & mut self ,
1131
+ _output_kind : LinkOutputKind ,
1132
+ _crate_type : CrateType ,
1133
+ _out_filename : & Path ,
1134
+ ) {
1135
+ }
1115
1136
1116
1137
fn link_dylib_by_name ( & mut self , name : & str , _verbatim : bool , _as_needed : bool ) {
1117
1138
// Emscripten always links statically
@@ -1260,7 +1281,12 @@ impl<'a> Linker for WasmLd<'a> {
1260
1281
& mut self . cmd
1261
1282
}
1262
1283
1263
- fn set_output_kind ( & mut self , output_kind : LinkOutputKind , _out_filename : & Path ) {
1284
+ fn set_output_kind (
1285
+ & mut self ,
1286
+ output_kind : LinkOutputKind ,
1287
+ _crate_type : CrateType ,
1288
+ _out_filename : & Path ,
1289
+ ) {
1264
1290
match output_kind {
1265
1291
LinkOutputKind :: DynamicNoPicExe
1266
1292
| LinkOutputKind :: DynamicPicExe
@@ -1409,7 +1435,13 @@ impl<'a> Linker for L4Bender<'a> {
1409
1435
& mut self . cmd
1410
1436
}
1411
1437
1412
- fn set_output_kind ( & mut self , _output_kind : LinkOutputKind , _out_filename : & Path ) { }
1438
+ fn set_output_kind (
1439
+ & mut self ,
1440
+ _output_kind : LinkOutputKind ,
1441
+ _crate_type : CrateType ,
1442
+ _out_filename : & Path ,
1443
+ ) {
1444
+ }
1413
1445
1414
1446
fn link_staticlib_by_name ( & mut self , name : & str , _verbatim : bool , whole_archive : bool ) {
1415
1447
self . hint_static ( ) ;
@@ -1556,7 +1588,12 @@ impl<'a> Linker for AixLinker<'a> {
1556
1588
& mut self . cmd
1557
1589
}
1558
1590
1559
- fn set_output_kind ( & mut self , output_kind : LinkOutputKind , out_filename : & Path ) {
1591
+ fn set_output_kind (
1592
+ & mut self ,
1593
+ output_kind : LinkOutputKind ,
1594
+ _crate_type : CrateType ,
1595
+ out_filename : & Path ,
1596
+ ) {
1560
1597
match output_kind {
1561
1598
LinkOutputKind :: DynamicDylib => {
1562
1599
self . hint_dynamic ( ) ;
@@ -1763,7 +1800,13 @@ impl<'a> Linker for PtxLinker<'a> {
1763
1800
& mut self . cmd
1764
1801
}
1765
1802
1766
- fn set_output_kind ( & mut self , _output_kind : LinkOutputKind , _out_filename : & Path ) { }
1803
+ fn set_output_kind (
1804
+ & mut self ,
1805
+ _output_kind : LinkOutputKind ,
1806
+ _crate_type : CrateType ,
1807
+ _out_filename : & Path ,
1808
+ ) {
1809
+ }
1767
1810
1768
1811
fn link_staticlib_by_name ( & mut self , _name : & str , _verbatim : bool , _whole_archive : bool ) {
1769
1812
panic ! ( "staticlibs not supported" )
@@ -1829,7 +1872,13 @@ impl<'a> Linker for LlbcLinker<'a> {
1829
1872
& mut self . cmd
1830
1873
}
1831
1874
1832
- fn set_output_kind ( & mut self , _output_kind : LinkOutputKind , _out_filename : & Path ) { }
1875
+ fn set_output_kind (
1876
+ & mut self ,
1877
+ _output_kind : LinkOutputKind ,
1878
+ _crate_type : CrateType ,
1879
+ _out_filename : & Path ,
1880
+ ) {
1881
+ }
1833
1882
1834
1883
fn link_staticlib_by_name ( & mut self , _name : & str , _verbatim : bool , _whole_archive : bool ) {
1835
1884
panic ! ( "staticlibs not supported" )
@@ -1900,7 +1949,13 @@ impl<'a> Linker for BpfLinker<'a> {
1900
1949
& mut self . cmd
1901
1950
}
1902
1951
1903
- fn set_output_kind ( & mut self , _output_kind : LinkOutputKind , _out_filename : & Path ) { }
1952
+ fn set_output_kind (
1953
+ & mut self ,
1954
+ _output_kind : LinkOutputKind ,
1955
+ _crate_type : CrateType ,
1956
+ _out_filename : & Path ,
1957
+ ) {
1958
+ }
1904
1959
1905
1960
fn link_staticlib_by_name ( & mut self , _name : & str , _verbatim : bool , _whole_archive : bool ) {
1906
1961
panic ! ( "staticlibs not supported" )
0 commit comments