clang-rs
clang-rs copied to clipboard
A somewhat idiomatic Rust wrapper for libclang.
Hi, Is there any possibility to access the location information for a type? I'm doing roughly the following: ``` fn_entity .get_type().unwrap() .get_argument_types().unwrap() .into_iter() .for_each(|t:Type| { // get location information for...
Hello, Thanks for this project. I am trying to use it on windows, but none the test pass because I get the following error: ``` thread 'test' panicked at 'a...
I'm unsure how this works, but looking at `EntityKind`, I don't see a variant representing `__attribute__((noreturn))`. Is that possible to add or is it not or how is it?
Fixes https://github.com/KyleMayes/clang-rs/issues/47.
It seems that clang-rs does not search for libraries in the environment variable LIBRARY_PATH during execution of the build.rs script. I am using GUIX (like NIX) and my library path...
This depends on #55
Hi, as reported here https://github.com/twistedfall/opencv-rust/issues/628 there is currently problem when trying to use the `clang` crate on Windows in combination with `runtime` feature enabled and clang-19. The following trivial program...
This is not really the correct solution, but at least it avoids a panic when fetching documentation that isn't UTF-8. A better solution would be to return `CString` to the...