1
Fork 0

Add netbsd amd64 support

This commit is contained in:
Alex Newman 2015-06-30 20:37:11 -07:00
parent d2cf9f9632
commit 0b7c4f57f6
43 changed files with 271 additions and 41 deletions

View file

@ -26,6 +26,7 @@ use ops::Neg;
#[cfg(target_os = "linux")] pub use os::linux as platform;
#[cfg(target_os = "macos")] pub use os::macos as platform;
#[cfg(target_os = "nacl")] pub use os::nacl as platform;
#[cfg(target_os = "netbsd")] pub use os::netbsd as platform;
#[cfg(target_os = "openbsd")] pub use os::openbsd as platform;
pub mod backtrace;