Skip to content

Commit

Permalink
Initial aarch64-apple-darwin support (#123)
Browse files Browse the repository at this point in the history
* Initial aarch64-apple-darwin support

* Copied x86_64 Mac config to aarch64, should regenerate

* Rustfmt
  • Loading branch information
repi authored Mar 5, 2021
1 parent 5e24bb5 commit 016a12e
Show file tree
Hide file tree
Showing 4 changed files with 3,895 additions and 1 deletion.
5 changes: 4 additions & 1 deletion physx-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,10 @@ fn main() {
let mut include = PathBuf::from("src/generated");

match target.as_str() {
"x86_64-apple-darwin" | "x86_64-pc-windows-msvc" | "aarch64-linux-android" => {
"x86_64-apple-darwin"
| "x86_64-pc-windows-msvc"
| "aarch64-linux-android"
| "aarch64-apple-darwin" => {
include.push(target);
}
nix if nix.starts_with("x86_64-unknown-linux") => {
Expand Down
Loading

0 comments on commit 016a12e

Please sign in to comment.