mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-24 20:48:55 +00:00
ae733ceb2b
This revbumps rutabaga_gfx and rutabaga_gfx_ffi to version 0.1.3 BUG=b:322802940 TEST=compile Change-Id: Ib8026be6a7e64969fd502c4b3dde75b9af5485c4 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/5270777 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Auto-Submit: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Vikram Auradkar <auradkar@google.com> Commit-Queue: Gurchetan Singh <gurchetansingh@chromium.org>
49 lines
1.4 KiB
Rust
49 lines
1.4 KiB
Rust
// Copyright 2023 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;
|
|
use std::fs::File;
|
|
use std::io::Write;
|
|
|
|
fn main() {
|
|
let target_os = std::env::var("CARGO_CFG_TARGET_OS").unwrap();
|
|
|
|
// Override prefix from environment variable (with a default)
|
|
let prefix = format!(
|
|
r##"prefix={prefix}"##,
|
|
prefix = env::var("PREFIX").unwrap_or_else(|_| "/usr".to_string())
|
|
);
|
|
|
|
// Generate .pc file contents
|
|
let pc_contents = format!(
|
|
"{}{}",
|
|
prefix,
|
|
r###"
|
|
exec_prefix=${prefix}
|
|
includedir=${prefix}/include
|
|
libdir=${exec_prefix}/lib
|
|
|
|
Name: rutabaga_gfx_ffi
|
|
Description: C FFI bindings to Rutabaga VGI
|
|
Version: 0.1.3
|
|
Cflags: -I${includedir}
|
|
Libs: -L${libdir} -lrutabaga_gfx_ffi
|
|
"###,
|
|
);
|
|
|
|
// Write the .pc file to the output directory
|
|
let mut pc_file = File::create(format!(
|
|
"{}/{}/rutabaga_gfx_ffi.pc",
|
|
env::var("CARGO_TARGET_DIR").as_deref().unwrap_or("target"),
|
|
env::var("PROFILE").unwrap()
|
|
))
|
|
.unwrap();
|
|
pc_file.write_all(pc_contents.as_bytes()).unwrap();
|
|
|
|
println!("cargo:rerun-if-changed=build.rs"); // Rebuild if build.rs changes
|
|
|
|
if target_os.contains("linux") || target_os.contains("nto") {
|
|
println!("cargo:rustc-cdylib-link-arg=-Wl,-soname,librutabaga_gfx_ffi.so.0");
|
|
}
|
|
}
|