Skip to content

Commit

Permalink
Auto merge of rust-lang#771 - raggi:fuchsia-zircon, r=alexcrichton
Browse files Browse the repository at this point in the history
fuchsia: mxio was renamed to fdio

As a side effect of the rename of the Magenta kernel to Zircon, the mxio library was renamed to fdio, and the linker directive needs to be updated.
  • Loading branch information
bors committed Sep 19, 2017
2 parents ba1d2f1 + 43ed4dd commit 9dccabd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ cfg_if! {
extern {}
} else if #[cfg(target_os = "fuchsia")] {
#[link(name = "c")]
#[link(name = "mxio")]
#[link(name = "fdio")]
extern {}
} else if #[cfg(target_env = "newlib")] {
#[link(name = "c")]
Expand Down

0 comments on commit 9dccabd

Please sign in to comment.