mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-04 03:50:33 +00:00
15 lines
274 B
Rust
15 lines
274 B
Rust
fn main() {
|
|
compile_cpp();
|
|
}
|
|
|
|
fn compile_cpp() {
|
|
println!("cargo:rerun-if-changed=cpp/trampoline.cpp");
|
|
|
|
cc::Build::new()
|
|
.cpp(true)
|
|
.debug(true)
|
|
.opt_level(0)
|
|
.file("cpp/trampoline.cpp")
|
|
.compile("libcpptrampoline.a");
|
|
}
|