Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
leeopop committed Feb 19, 2024
1 parent cc45920 commit 7a4a716
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dpdk-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ impl State {
];

// Remove blacklist headers
let blacklist_prefix = vec!["rte_acc_"];
let blacklist_prefix = vec!["rte_acc_", "rte_thash", "rte_hash"];
let mut name_set: Vec<String> = vec![];
for file in &headers {
let file_name = String::from(file.file_stem().unwrap().to_str().unwrap());
Expand Down Expand Up @@ -440,7 +440,7 @@ impl State {
if clang::StorageClass::Static != storage || !(is_decl && is_inline_fn) {
continue;
}
println!("cargo:warning={} {} {} {:?}", name, is_decl, f.is_inline_function(), storage);
// println!("cargo:warning={} {} {} {:?}", name, is_decl, f.is_inline_function(), storage);

// Extract type names in C and Rust.
let c_return_type_string = return_type.get_display_name();
Expand Down

0 comments on commit 7a4a716

Please sign in to comment.