mirror of
https://github.com/ParrotXray/Mantis.git
synced 2026-08-24 19:00:27 +09:00
7 lines
157 B
Rust
7 lines
157 B
Rust
use which::which;
|
|
|
|
fn main() {
|
|
let bpf_linker = which("bpf-linker").unwrap();
|
|
println!("cargo:rerun-if-changed={}", bpf_linker.to_str().unwrap());
|
|
}
|