Skip to content

Commit

Permalink
Support windows aarch64/arm64 target
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBerktold authored Dec 1, 2024
1 parent d44c37c commit 37ef4e1
Show file tree
Hide file tree
Showing 11 changed files with 6,521 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
- Added support for the `aarch64-pc-windows-msvc` target.

## [0.8.6] - 2022-11-27
### Added
- Added binaries for Windows targets using the GNU toolchain.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ Use at your own risk.
* `armv7-unknown-linux-musleabihf` (static)
* `x86_64-apple-darwin` (dynamic)
* `aarch64-apple-darwin` (dynamic)
* `aarch64-pc-windows-msvc` (dynamic)

## References

Expand Down
3 changes: 3 additions & 0 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ fn search_path() -> PathBuf {
}
path.push("i386");
}
"aarch64" => {
path.push("arm64");
}
target_arch => panic!("Target architecture not supported: {target_arch}"),
}
}
Expand Down
Loading

0 comments on commit 37ef4e1

Please sign in to comment.