Add Fuchsia support

Adds support for the x86_64-unknown-fuchsia target, which covers the
Fuchsia operating system.
This commit is contained in:
Raph Levien 2016-10-18 13:43:18 -07:00
parent 4879166194
commit 76bac5d33e
21 changed files with 548 additions and 38 deletions

View file

@ -58,7 +58,8 @@ impl DoubleEndedIterator for Args {
target_os = "openbsd",
target_os = "solaris",
target_os = "emscripten",
target_os = "haiku"))]
target_os = "haiku",
target_os = "fuchsia"))]
mod imp {
use os::unix::prelude::*;
use mem;