I have a header file lets say greetings.h:
include <hello.h>;
include <bye.h>;
include <hola.h>;
...
Im using bindgen in rust to generate those file from c header to rust.
But I want to ignore generating the include <hola.h>
header and generate the greeting.h only with helllo.h
and bye.h
.
I have searched it in docs.rs bindgen documentation but not found any hint on that.
or is there any option to do that with clang
I was able to solve this by guessing that my library that Im trying to bind from c to rust are "namespaced", in C language there is no actually namespaces but people that write open source code tend to prefix their code with "some_prefix*". So if the h file that I want to bind looks like:
mylib.h:
and I don't want the hola.h to be generated, i can filter the output with allow and block functionality of bingden like:
build.rs:
Bindgen will bring all dependencies of allowlist firstly and if some of the dependencies include
*hola*
it won't generate it.