Skip to content
Snippets Groups Projects
Commit 95d5534d authored by bors's avatar bors
Browse files

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.
parents 89c6c6c8 52369bca
No related branches found
No related tags found
No related merge requests found
......@@ -52,6 +52,6 @@ extern {
pub fn memalign(align: ::size_t, size: ::size_t) -> *mut ::c_void;
}
#[link(name = "c", kind = "static")]
#[link(name = "m", kind = "static")]
#[link(name = "c")]
#[link(name = "m")]
extern {}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment