Skip to content

Commit d565b20

Browse files
committed
Emscripten: Drop -lc the emcc driver will add it when it is needed
According to sbc100, when linking with emcc we shouldn't pass -lc: > your best bet is to remove any/all explicit additions of -lc, since > the compiler driver (emcc) will add it if/when its needed. > (I don't think this is an emscripten bug BTW, but a rustc driver bug) emscripten-core/emscripten#17191 (comment)
1 parent 8e430bf commit d565b20

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

compiler/rustc_codegen_ssa/src/back/linker.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1048,6 +1048,10 @@ impl<'a> Linker for EmLinker<'a> {
10481048
}
10491049

10501050
fn link_staticlib(&mut self, lib: Symbol, _verbatim: bool) {
1051+
// remove -lc: the compiler driver emcc will add it if its needed.
1052+
if lib.as_str() == "c" {
1053+
return;
1054+
}
10511055
self.cmd.arg("-l").sym_arg(lib);
10521056
}
10531057

0 commit comments

Comments
 (0)