Only use the -dynamiclib flag when the linker is not ld
This is not a valid flag for ld64. When the ld64 linker is explicitly provided through `config.toml`, rustc will not successfully compile.
This commit is contained in:
parent
32ddd0206c
commit
f44fa6348f
@ -315,7 +315,10 @@ impl<'a> GccLinker<'a> {
|
||||
fn build_dylib(&mut self, out_filename: &Path) {
|
||||
// On mac we need to tell the linker to let this library be rpathed
|
||||
if self.sess.target.is_like_osx {
|
||||
self.cmd.arg("-dynamiclib");
|
||||
if !self.is_ld {
|
||||
self.cmd.arg("-dynamiclib");
|
||||
}
|
||||
|
||||
self.linker_arg("-dylib");
|
||||
|
||||
// Note that the `osx_rpath_install_name` option here is a hack
|
||||
|
Loading…
x
Reference in New Issue
Block a user