mirror of https://github.com/aya-rs/aya
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
367 B
Rust
13 lines
367 B
Rust
use std::{env, path::PathBuf};
|
|
use xtask::create_symlink_to_binary;
|
|
|
|
fn main() {
|
|
let out_dir = env::var_os("OUT_DIR").unwrap();
|
|
let out_dir = PathBuf::from(out_dir);
|
|
let bpf_linker_symlink = create_symlink_to_binary(&out_dir, "bpf-linker").unwrap();
|
|
println!(
|
|
"cargo:rerun-if-changed={}",
|
|
bpf_linker_symlink.to_str().unwrap()
|
|
);
|
|
}
|