We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8036126 commit be43a06Copy full SHA for be43a06
1 file changed
framework/build.rs
@@ -82,6 +82,7 @@ fn main() {
82
.header(header_path.to_str().unwrap())
83
.rust_target(bindgen::RustTarget::Nightly)
84
.clang_args(vec!["-I", dpdk_include_path.to_str().unwrap()].iter())
85
+ .blacklist_type("max_align_t") // https://github.com/servo/rust-bindgen/issues/550
86
.generate()
87
.expect("Unable to generate DPDK bindings");
88
let out_dir = env::var("OUT_DIR").unwrap();
0 commit comments