Skip to content

Commit

Permalink
Merge pull request #20 from nielx/master
Browse files Browse the repository at this point in the history
Add support for the Haiku target
  • Loading branch information
JohnTitor committed Jan 15, 2021
2 parents 8672b22 + 193a72f commit f2842c7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1114,6 +1114,8 @@ fn default_cfg(target: &str) -> Vec<(String, Option<String>)> {
("redox", "unix", "")
} else if target.contains("vxworks") {
("vxworks", "unix", "")
} else if target.contains("haiku") {
("haiku", "unix", "")
} else {
panic!("unknown os/family: {}", target)
};
Expand Down

0 comments on commit f2842c7

Please sign in to comment.