diff options
Diffstat (limited to 'third_party/rust/ntapi/build.rs')
-rw-r--r-- | third_party/rust/ntapi/build.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/rust/ntapi/build.rs b/third_party/rust/ntapi/build.rs new file mode 100644 index 0000000000..bbd46f5950 --- /dev/null +++ b/third_party/rust/ntapi/build.rs @@ -0,0 +1,15 @@ +use std::env::var; + +fn main() { + #[cfg(feature = "user")] { + if var("TARGET").map( + |t| t == "x86_64-pc-windows-gnu" || t == "i686-pc-windows-gnu" + ).unwrap_or(false) { + if var("WINAPI_NO_BUNDLED_LIBRARIES").is_ok() { + println!("cargo:rustc-link-lib=ntdll"); + } else { + println!("cargo:rustc-link-lib=winapi_ntdll"); + } + } + } +} |