about summary refs log tree commit diff
path: root/src/libstd/sys_common/mod.rs
diff options
context:
space:
mode:
authorJohn Colanduoni <john@colanduoni.com>2017-07-22 23:05:47 -0700
committerkennytm <kennytm@gmail.com>2017-09-02 03:24:15 +0800
commite8121b3d163f90a8f1cefca07352d3780eed933d (patch)
tree5d3cef5f0030de9f4f04619d081facbbad6c3290 /src/libstd/sys_common/mod.rs
parentf861b6ee46465097eec266c160ac53e230df7cf0 (diff)
downloadrust-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.rs2
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;