forked from memorysafety/rav1d
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from rerun-io/andreas/fix-windows-build
Published crate windows fixes
- Loading branch information
Showing
4 changed files
with
51 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
fn main() { | ||
// NOTE: we rely on libraries that are only distributed for Windows so | ||
// targeting Windows/MSVC is not supported when cross compiling. | ||
#[cfg(all(target_os = "windows", target_env = "msvc"))] | ||
{ | ||
use cc::windows_registry; | ||
use std::env; | ||
|
||
let os = env::var("CARGO_CFG_TARGET_OS").expect("missing CARGO_CFG_TARGET_OS"); | ||
let target = env::var("TARGET").expect("missing TARGET"); | ||
if os == "windows" { | ||
// for sprintf, snprintf, etc. | ||
println!("cargo:rustc-link-lib=static=oldnames"); | ||
let tool = windows_registry::find_tool(&target, "cl.exe") | ||
.expect("couldn't find cl.exe; are the Visual Studio C++ tools installed?"); | ||
let lib_paths = &tool | ||
.env() | ||
.iter() | ||
.find(|(key, _val)| key == "LIB") | ||
.expect("LIB path not found") | ||
.1; | ||
for path in lib_paths.to_str().unwrap().split(';') { | ||
if path != "" { | ||
println!("cargo:rustc-link-search={path}"); | ||
} | ||
} | ||
|
||
let getopt = "getopt"; | ||
cc::Build::new() | ||
.files([&"tools/compat/getopt.c"]) | ||
.include("include/compat") | ||
.debug(cfg!(debug_assertions)) | ||
.compile(&getopt); | ||
// cc automatically outputs the following line | ||
// println!("cargo:rustc-link-lib=static={getopt}"); | ||
} | ||
} | ||
} |