diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:02:58 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:02:58 +0000 |
commit | 698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch) | |
tree | 173a775858bd501c378080a10dca74132f05bc50 /vendor/windows_x86_64_gnu | |
parent | Initial commit. (diff) | |
download | rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip |
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/windows_x86_64_gnu')
-rw-r--r-- | vendor/windows_x86_64_gnu/.cargo-checksum.json | 1 | ||||
-rw-r--r-- | vendor/windows_x86_64_gnu/Cargo.toml | 23 | ||||
-rw-r--r-- | vendor/windows_x86_64_gnu/build.rs | 10 | ||||
-rw-r--r-- | vendor/windows_x86_64_gnu/lib/libwindows.a | bin | 0 -> 13879932 bytes | |||
-rw-r--r-- | vendor/windows_x86_64_gnu/src/lib.rs | 1 |
5 files changed, 35 insertions, 0 deletions
diff --git a/vendor/windows_x86_64_gnu/.cargo-checksum.json b/vendor/windows_x86_64_gnu/.cargo-checksum.json new file mode 100644 index 000000000..03829683f --- /dev/null +++ b/vendor/windows_x86_64_gnu/.cargo-checksum.json @@ -0,0 +1 @@ +{"files":{"Cargo.toml":"cb87a36b3ade7c98a4e0e04bb7677051bc86cf10ae7db5a7830302d1dc859bd4","build.rs":"d1d816121af1bba70471e982bf98fa9cd2d8cf695d15d2837f592458410ff597","lib/libwindows.a":"441efa4700ce09c8fd1ac7b52dcf35398322e81bd83317081d78ed0608a06600","src/lib.rs":"bdf6c7cf1fc01f69cc1d4e52948d1f246fdd310e6323d5dd1efd23f1daf382ef"},"package":"4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"}
\ No newline at end of file diff --git a/vendor/windows_x86_64_gnu/Cargo.toml b/vendor/windows_x86_64_gnu/Cargo.toml new file mode 100644 index 000000000..9ed2a23ee --- /dev/null +++ b/vendor/windows_x86_64_gnu/Cargo.toml @@ -0,0 +1,23 @@ +# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO +# +# When uploading crates to the registry Cargo will automatically +# "normalize" Cargo.toml files for maximal compatibility +# with all versions of Cargo and also rewrite `path` dependencies +# to registry (e.g., crates.io) dependencies. +# +# If you are reading this file be aware that the original Cargo.toml +# will likely look very different (and much more reasonable). +# See Cargo.toml.orig for the original contents. + +[package] +edition = "2018" +name = "windows_x86_64_gnu" +version = "0.36.1" +authors = ["Microsoft"] +description = "Code gen support for the windows crate" +license = "MIT OR Apache-2.0" +repository = "https://github.com/microsoft/windows-rs" + +[package.metadata.docs.rs] +default-target = "x86_64-pc-windows-msvc" +targets = [] diff --git a/vendor/windows_x86_64_gnu/build.rs b/vendor/windows_x86_64_gnu/build.rs new file mode 100644 index 000000000..7612e7935 --- /dev/null +++ b/vendor/windows_x86_64_gnu/build.rs @@ -0,0 +1,10 @@ +fn main() { + let target = std::env::var("TARGET").unwrap(); + if target != "x86_64-pc-windows-gnu" && target != "x86_64-uwp-windows-gnu" { + return; + } + + let dir = std::env::var("CARGO_MANIFEST_DIR").unwrap(); + + println!("cargo:rustc-link-search=native={}", std::path::Path::new(&dir).join("lib").display()); +} diff --git a/vendor/windows_x86_64_gnu/lib/libwindows.a b/vendor/windows_x86_64_gnu/lib/libwindows.a Binary files differnew file mode 100644 index 000000000..64e8e9f45 --- /dev/null +++ b/vendor/windows_x86_64_gnu/lib/libwindows.a diff --git a/vendor/windows_x86_64_gnu/src/lib.rs b/vendor/windows_x86_64_gnu/src/lib.rs new file mode 100644 index 000000000..0c9ac1ac8 --- /dev/null +++ b/vendor/windows_x86_64_gnu/src/lib.rs @@ -0,0 +1 @@ +#![no_std] |