Skip to content

Commit ad3de7f

Browse files
committed
rustc: Hint to the linker about static/shared libs
If a linker finds both a static and a dynamic version of the same library, then the linker often chooses the dynamic version. This is surprising when a native library is specified as being "static" in rust source. This modifies the linker command line to obey the hints given in rust source files and instructing the linker to prefer a particular version of a found library. Unfortunately, this patch has no effect on osx because the linker supports no such hint, and it also has no effect on windows because the linker apparently just ignores it. For now this is predominately used to enable the previous patch of linking to libstdc++ statically, but more support would need to be added for this in the future if we wanted to officially support it. cc #12557 (doesn't close because it doesn't support OSX and windows)
1 parent acdee8b commit ad3de7f

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/librustc/back/link.rs

+16
Original file line numberDiff line numberDiff line change
@@ -1298,9 +1298,22 @@ fn add_local_native_libraries(args: &mut Vec<~str>, sess: &Session) {
12981298
args.push("-L" + path.as_str().unwrap().to_owned());
12991299
}
13001300

1301+
// Some platforms take hints about whether a library is static or dynamic.
1302+
// For those that support this, we ensure we pass the option if the library
1303+
// was flagged "static" (most defaults are dynamic) to ensure that if
1304+
// libfoo.a and libfoo.so both exist that the right one is chosen.
1305+
let takes_hints = sess.targ_cfg.os != abi::OsMacos;
1306+
13011307
for &(ref l, kind) in sess.cstore.get_used_libraries().borrow().iter() {
13021308
match kind {
13031309
cstore::NativeUnknown | cstore::NativeStatic => {
1310+
if takes_hints {
1311+
if kind == cstore::NativeStatic {
1312+
args.push("-Wl,-Bstatic".to_owned());
1313+
} else {
1314+
args.push("-Wl,-Bdynamic".to_owned());
1315+
}
1316+
}
13041317
args.push("-l" + *l);
13051318
}
13061319
cstore::NativeFramework => {
@@ -1309,6 +1322,9 @@ fn add_local_native_libraries(args: &mut Vec<~str>, sess: &Session) {
13091322
}
13101323
}
13111324
}
1325+
if takes_hints {
1326+
args.push("-Wl,-Bdynamic".to_owned());
1327+
}
13121328
}
13131329

13141330
// # Rust Crate linking

0 commit comments

Comments
 (0)