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 94531cf commit 8c88ff4Copy full SHA for 8c88ff4
compiler/rustc_codegen_ssa/src/back/linker.rs
@@ -1793,7 +1793,13 @@ pub(crate) fn exported_symbols(
1793
if let Some(ref exports) = tcx.sess.target.override_export_symbols {
1794
return exports
1795
.iter()
1796
- .map(|sym| (sym.to_string(), SymbolExportKind::Text /* FIXME */))
+ .map(|sym| {
1797
+ (
1798
+ sym.to_string(),
1799
+ // FIXME use the correct export kind for this symbol
1800
+ SymbolExportKind::Text,
1801
+ )
1802
+ })
1803
.collect();
1804
}
1805
0 commit comments