Skip to content

Commit

Permalink
add support for mips64
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge Aparicio committed Aug 27, 2016
1 parent a6becb6 commit 9109572
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 @@ -754,6 +754,8 @@ fn default_cfg(target: &str) -> Vec<(String, Option<String>)> {
("arm", "32")
} else if target.starts_with("aarch64") {
("aarch64", "64")
} else if target.starts_with("mips64") {
("mips64", "64")
} else if target.starts_with("mips") {
("mips", "32")
} else if target.starts_with("powerpc64le") {
Expand Down

0 comments on commit 9109572

Please sign in to comment.