Skip to content

Commit 0b7f7b7

Browse files
authored
Merge pull request rust-lang#16 from cactorium/master
Add -unknown-linux-uclibc as target
2 parents 80c0e5d + 376f59a commit 0b7f7b7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -775,6 +775,8 @@ fn default_cfg(target: &str) -> Vec<(String, Option<String>)> {
775775
("linux", "unix", "gnu")
776776
} else if target.contains("unknown-linux-musl") {
777777
("linux", "unix", "musl")
778+
} else if target.contains("unknown-linux-uclibc") {
779+
("linux", "unix", "uclibc")
778780
} else if target.contains("apple-darwin") {
779781
("macos", "unix", "")
780782
} else if target.contains("apple-ios") {

0 commit comments

Comments
 (0)