-
Notifications
You must be signed in to change notification settings - Fork 506
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
aarch64-pc-windows-gnullvm
and x86_64-pc-windows-gnullvm
targets
- Loading branch information
Showing
18 changed files
with
28,688 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[package] | ||
name = "windows_aarch64_gnullvm" | ||
version = "0.38.0" | ||
authors = ["Microsoft"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
description = "Code gen support for the windows crate" | ||
repository = "https://github.com/microsoft/windows-rs" | ||
|
||
[package.metadata.docs.rs] | ||
default-target = "x86_64-pc-windows-msvc" | ||
targets = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
fn main() { | ||
let target = std::env::var("TARGET").unwrap(); | ||
if target != "aarch64-pc-windows-gnullvm" { | ||
return; | ||
} | ||
|
||
let dir = std::env::var("CARGO_MANIFEST_DIR").unwrap(); | ||
|
||
println!("cargo:rustc-link-search=native={}", std::path::Path::new(&dir).join("lib").display()); | ||
} |
Oops, something went wrong.