Skip to content

Commit

Permalink
fix: remove fake no_dead_strip for osx
Browse files Browse the repository at this point in the history
  • Loading branch information
csmoe committed Jul 28, 2022
1 parent 05e678c commit 03f9efe
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions compiler/rustc_codegen_ssa/src/back/linker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -566,9 +566,7 @@ impl<'a> Linker for GccLinker<'a> {
}

fn no_gc_sections(&mut self) {
if self.sess.target.is_like_osx {
self.linker_arg("-no_dead_strip");
} else if self.sess.target.linker_is_gnu || self.sess.target.is_like_wasm {
if self.sess.target.linker_is_gnu || self.sess.target.is_like_wasm {
self.linker_arg("--no-gc-sections");
}
}
Expand Down

0 comments on commit 03f9efe

Please sign in to comment.