Skip to content

Commit

Permalink
Merge pull request #16 from cactorium/master
Browse files Browse the repository at this point in the history
Add -unknown-linux-uclibc as target
  • Loading branch information
alexcrichton committed Apr 20, 2017
2 parents 80c0e5d + 376f59a commit 0b7f7b7
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 @@ -775,6 +775,8 @@ fn default_cfg(target: &str) -> Vec<(String, Option<String>)> {
("linux", "unix", "gnu")
} else if target.contains("unknown-linux-musl") {
("linux", "unix", "musl")
} else if target.contains("unknown-linux-uclibc") {
("linux", "unix", "uclibc")
} else if target.contains("apple-darwin") {
("macos", "unix", "")
} else if target.contains("apple-ios") {
Expand Down

0 comments on commit 0b7f7b7

Please sign in to comment.