Skip to content

Commit 0d2c26c

Browse files
eddybalexcrichton
authored andcommitted
Mark the metadata symbol as reachable to fix OSX not finding dylibs.
1 parent 07d373f commit 0d2c26c

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

src/librustc_trans/base.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -2508,9 +2508,7 @@ pub fn write_metadata<'a, 'tcx>(cx: &SharedCrateContext<'a, 'tcx>,
25082508

25092509
let llmeta = C_bytes_in_context(cx.metadata_llcx(), &compressed[..]);
25102510
let llconst = C_struct_in_context(cx.metadata_llcx(), &[llmeta], false);
2511-
let name = format!("rust_metadata_{}_{}",
2512-
cx.link_meta().crate_name,
2513-
cx.link_meta().crate_hash);
2511+
let name = cx.metadata_symbol_name();
25142512
let buf = CString::new(name).unwrap();
25152513
let llglobal = unsafe {
25162514
llvm::LLVMAddGlobal(cx.metadata_llmod(), val_ty(llconst).to_ref(), buf.as_ptr())
@@ -2812,6 +2810,10 @@ pub fn trans_crate<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
28122810
reachable_symbols.push("main".to_string());
28132811
}
28142812

2813+
if sess.crate_types.borrow().contains(&config::CrateTypeDylib) {
2814+
reachable_symbols.push(shared_ccx.metadata_symbol_name());
2815+
}
2816+
28152817
// For the purposes of LTO or when creating a cdylib, we add to the
28162818
// reachable set all of the upstream reachable extern fns. These functions
28172819
// are all part of the public ABI of the final product, so we need to

src/librustc_trans/context.rs

+6
Original file line numberDiff line numberDiff line change
@@ -503,6 +503,12 @@ impl<'b, 'tcx> SharedCrateContext<'b, 'tcx> {
503503
Substs::new(VecPerParamSpace::empty(),
504504
scheme.generics.regions.map(|_| ty::ReStatic)))
505505
}
506+
507+
pub fn metadata_symbol_name(&self) -> String {
508+
format!("rust_metadata_{}_{}",
509+
self.link_meta().crate_name,
510+
self.link_meta().crate_hash)
511+
}
506512
}
507513

508514
impl<'tcx> LocalCrateContext<'tcx> {

0 commit comments

Comments
 (0)