Skip to content

Commit b23973d

Browse files
tyrone-wutamird
authored andcommitted
xtask: corrected bpf to ebpf for path to aya-ebpf-bindings in codegen
Currently, when running `cargo +nightly xtask codegen` locally and in the codegen GHA workflow, an error occurs with only "Error: bindgen failed" displayed. This was due to a path using "bpf/..." instead of "ebpf/...". It is now corrected to "ebpf", and bindgen fails should now display a more direct message on why it failed. Fixes: aya-rs#914
1 parent b552c83 commit b23973d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

xtask/src/codegen/aya.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ fn codegen_internal_btf_bindings(libbpf_dir: &Path) -> Result<(), anyhow::Error>
4242

4343
let bindings = bindgen
4444
.generate()
45-
.map_err(|_| anyhow!("bindgen failed"))?
45+
.map_err(|op| anyhow!("bindgen failed - {op}"))?
4646
.to_string();
4747

4848
// write the bindings, with the original helpers removed
@@ -216,7 +216,7 @@ fn codegen_bindings(opts: &SysrootOptions, libbpf_dir: &Path) -> Result<(), anyh
216216

217217
let bindings = bindgen
218218
.generate()
219-
.map_err(|_| anyhow!("bindgen failed"))?
219+
.map_err(|op| anyhow!("bindgen failed - {op}"))?
220220
.to_string();
221221

222222
// write the bindings, with the original helpers removed

xtask/src/codegen/aya_ebpf_bindings.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub fn codegen(opts: &SysrootOptions, libbpf_dir: &Path) -> Result<(), anyhow::E
1919
riscv64_sysroot,
2020
} = opts;
2121

22-
let dir = PathBuf::from("bpf/aya-ebpf-bindings");
22+
let dir = PathBuf::from("ebpf/aya-ebpf-bindings");
2323

2424
let builder = || {
2525
let mut bindgen = bindgen::bpf_builder()
@@ -95,7 +95,7 @@ pub fn codegen(opts: &SysrootOptions, libbpf_dir: &Path) -> Result<(), anyhow::E
9595

9696
let bindings = bindgen
9797
.generate()
98-
.map_err(|_| anyhow!("bindgen failed"))?
98+
.map_err(|op| anyhow!("bindgen failed - {op}"))?
9999
.to_string();
100100

101101
let mut tree = parse_str::<syn::File>(&bindings).unwrap();

0 commit comments

Comments
 (0)