We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f116110 commit 3957d3aCopy full SHA for 3957d3a
compiler/rustc_codegen_ssa/src/back/linker.rs
@@ -1605,8 +1605,9 @@ impl<'a> Linker for AixLinker<'a> {
1605
fn debuginfo(&mut self, strip: Strip, _: &[PathBuf]) {
1606
match strip {
1607
Strip::None => {}
1608
- Strip::Debuginfo => {}
1609
- Strip::Symbols => {
+ // FIXME: -s strips the symbol table, line number information
+ // and relocation information.
1610
+ Strip::Debuginfo | Strip::Symbols => {
1611
self.cmd.arg("-s");
1612
}
1613
0 commit comments