mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 12:34:31 +00:00
01c6ef9d3b
Fixes clippy warning in Rust 1.77 BUG=b:344974550 TEST=tools/clippy Change-Id: I668cdbd6008524b2fbf1045afc3898bbffa188f3 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/5609083 Commit-Queue: Daniel Verkamp <dverkamp@chromium.org> Reviewed-by: Alexandre Courbot <acourbot@chromium.org>
44 lines
1.3 KiB
Rust
44 lines
1.3 KiB
Rust
// Copyright 2022 The ChromiumOS Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
use std::env;
|
|
|
|
static PREBUILTS_VERSION_FILENAME: &str = "prebuilts_version";
|
|
static R8BRAIN_LIB: &str = "r8Brain.lib";
|
|
static R8BRAIN_DLL: &str = "r8Brain.dll";
|
|
static UCRTBASE_DLL: &str = "ucrtbased.dll";
|
|
static VCRUNTIME_DLL: &str = "vcruntime140d.dll";
|
|
|
|
fn main() {
|
|
if std::env::var("CARGO_CFG_WINDOWS").is_ok() {
|
|
let version = std::fs::read_to_string(PREBUILTS_VERSION_FILENAME)
|
|
.unwrap()
|
|
.trim()
|
|
.parse::<u32>()
|
|
.unwrap();
|
|
|
|
// TODO(b:253039132) build prebuilts locally on windows from build.rs.
|
|
let files = prebuilts::download_prebuilts(
|
|
"r8brain",
|
|
version,
|
|
&[R8BRAIN_DLL, R8BRAIN_LIB, UCRTBASE_DLL, VCRUNTIME_DLL],
|
|
)
|
|
.unwrap();
|
|
let lib_dir = files
|
|
.first()
|
|
.unwrap()
|
|
.parent()
|
|
.unwrap()
|
|
.as_os_str()
|
|
.to_str()
|
|
.unwrap();
|
|
println!("cargo:rustc-link-lib=r8Brain");
|
|
println!(r#"cargo:rustc-link-search={}"#, lib_dir);
|
|
println!(
|
|
r#"cargo:rustc-env=PATH={};{}"#,
|
|
lib_dir,
|
|
env::var("PATH").unwrap(),
|
|
);
|
|
}
|
|
}
|