asterinas/kernel/libs/comp-sys/cargo-component/build.rs

16 lines
481 B
Rust
Raw Normal View History

2024-01-03 03:22:36 +00:00
// Licensed under the Apache License, Version 2.0 or the MIT License.
// Copyright (C) 2023-2024 Ant Group.
// This implementation is from rust clippy. We modified the code.
2023-02-07 08:05:21 +00:00
fn main() {
// Forward the profile to the main compilation
println!(
"cargo:rustc-env=PROFILE={}",
std::env::var("PROFILE").unwrap()
);
// Don't rebuild even if nothing changed
println!("cargo:rerun-if-changed=build.rs");
rustc_tools_util::setup_version_info!();
}