Skip to content

Commit 9f0bc45

Browse files
committed
---
yaml --- r: 145370 b: refs/heads/try2 c: 133200a h: refs/heads/master v: v3
1 parent 77c0b78 commit 9f0bc45

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 9621156fc3814edaef6acafc06827e5aa87c9bdd
8+
refs/heads/try2: 133200a6e293f6e74b14ddb6334fab11b13e0f46
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/librustc/middle/trans/base.rs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2652,17 +2652,18 @@ pub fn get_item_val(ccx: @mut CrateContext, id: ast::NodeId) -> ValueRef {
26522652
let path = vec::append((*pth).clone(), [path_name(ni.ident)]);
26532653
foreign::register_foreign_item_fn(ccx, abis, &path, ni)
26542654
}
2655-
ast::foreign_item_static(*) if attr::contains_name(ni.attrs, "crate_map")
2656-
=> ccx.crate_map,
26572655
ast::foreign_item_static(*) => {
26582656
let ident = foreign::link_name(ccx, ni);
2659-
let g = do ident.with_c_str |buf| {
2660-
unsafe {
2657+
unsafe {
2658+
let g = do ident.with_c_str |buf| {
26612659
let ty = type_of(ccx, ty);
26622660
llvm::LLVMAddGlobal(ccx.llmod, ty.to_ref(), buf)
2661+
};
2662+
if attr::contains_name(ni.attrs, "weak_linkage") {
2663+
lib::llvm::SetLinkage(g, lib::llvm::ExternalWeakLinkage);
26632664
}
2664-
};
2665-
g
2665+
g
2666+
}
26662667
}
26672668
}
26682669
}

branches/try2/src/libstd/rt/crate_map.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ use container::MutableSet;
1818

1919
extern {
2020
#[cfg(not(stage0))]
21-
#[crate_map]
21+
#[weak_linkage]
22+
#[link_name = "_rust_crate_map_toplevel"]
2223
static CRATE_MAP: CrateMap;
2324
}
2425

0 commit comments

Comments
 (0)