Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Strict bindgen on static functions #287

Merged
merged 1 commit into from
Jun 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion mbedtls-sys/build/bindgen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,14 @@ impl super::BuildConfig {
};
}


// generate static function wrappers without any other rust related parameters to ensure
// correctness of result C code
bindgen::builder()
.clang_args(cc.get_compiler().args().iter().map(|arg| arg.to_str().unwrap()))
.header_contents("bindgen-input.h", &header)
.allowlist_function("^(?i)mbedtls_.*")
.allowlist_function("^(?i)psa_.*")
.wrap_static_fns(true)
.wrap_static_fns_path(&self.static_wrappers_c)
.generate().expect("bindgen error");
Expand Down