diff options
| author | Raph Levien <raph@google.com> | 2016-10-18 13:43:18 -0700 | 
|---|---|---|
| committer | Raph Levien <raph@google.com> | 2016-10-22 07:08:06 -0700 | 
| commit | 76bac5d33e09e8ae1b243c045584646431147cce (patch) | |
| tree | e5a7e238441d821c4d5507cc71d5a2cdb6b6869e /src/libstd/sys/unix/args.rs | |
| parent | 4879166194ed63ebd2a8c3ce8db1ccde4a6a1920 (diff) | |
| download | rust-76bac5d33e09e8ae1b243c045584646431147cce.tar.gz rust-76bac5d33e09e8ae1b243c045584646431147cce.zip | |
Add Fuchsia support
Adds support for the x86_64-unknown-fuchsia target, which covers the Fuchsia operating system.
Diffstat (limited to 'src/libstd/sys/unix/args.rs')
| -rw-r--r-- | src/libstd/sys/unix/args.rs | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/libstd/sys/unix/args.rs b/src/libstd/sys/unix/args.rs index c64db333e51..c04fd863674 100644 --- a/src/libstd/sys/unix/args.rs +++ b/src/libstd/sys/unix/args.rs @@ -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; | 
