diff options
| author | John Colanduoni <john@colanduoni.com> | 2017-07-22 23:05:47 -0700 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2017-09-02 03:24:15 +0800 |
| commit | e8121b3d163f90a8f1cefca07352d3780eed933d (patch) | |
| tree | 5d3cef5f0030de9f4f04619d081facbbad6c3290 /src/libstd/sys_common/mod.rs | |
| parent | f861b6ee46465097eec266c160ac53e230df7cf0 (diff) | |
| download | rust-e8121b3d163f90a8f1cefca07352d3780eed933d.tar.gz rust-e8121b3d163f90a8f1cefca07352d3780eed933d.zip | |
Add libbacktrace support for Apple platforms
Diffstat (limited to 'src/libstd/sys_common/mod.rs')
| -rw-r--r-- | src/libstd/sys_common/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys_common/mod.rs b/src/libstd/sys_common/mod.rs index ccd4b91a7b7..30241819bd5 100644 --- a/src/libstd/sys_common/mod.rs +++ b/src/libstd/sys_common/mod.rs @@ -51,7 +51,7 @@ pub use sys::net; pub mod net; #[cfg(feature = "backtrace")] -#[cfg(any(all(unix, not(any(target_os = "macos", target_os = "ios", target_os = "emscripten"))), +#[cfg(any(all(unix, not(target_os = "emscripten")), all(windows, target_env = "gnu"), target_os = "redox"))] pub mod gnu; |
