Skip to content

Commit 95d5534

Browse files
committed
Auto merge of #490 - redox-os:master, r=alexcrichton
Remove kind='static' from Redox linkage Our cross compiler links binaries statically, and the rustc target has dynamic linking disabled - adding kind = "static" is not necessary.
2 parents 89c6c6c + 52369bc commit 95d5534

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/redox.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ extern {
5252
pub fn memalign(align: ::size_t, size: ::size_t) -> *mut ::c_void;
5353
}
5454

55-
#[link(name = "c", kind = "static")]
56-
#[link(name = "m", kind = "static")]
55+
#[link(name = "c")]
56+
#[link(name = "m")]
5757
extern {}

0 commit comments

Comments
 (0)