We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Like #728, but for 32 bit Linux.
struct ec_sdo_request; typedef struct ec_sdo_request ec_sdo_request_t; int *ecrt_sdo_request_data( ec_sdo_request_t *req /**< SDO request. */ );
$ bindgen input.h
#[repr(C)] #[derive(Debug, Copy, Clone)] pub struct ec_sdo_request { _unused: [u8; 0], } pub type ec_sdo_request_t = ec_sdo_request; extern "C" { #[link_name = "_Z21ecrt_sdo_request_data"] pub fn ecrt_sdo_request_data(req: *mut ec_sdo_request_t) -> *mut ::std::os::raw::c_int; }
#[repr(C)] #[derive(Debug, Copy, Clone)] pub struct ec_sdo_request { _unused: [u8; 0], } pub type ec_sdo_request_t = ec_sdo_request; extern "C" { pub fn ecrt_sdo_request_data(req: *mut ec_sdo_request_t) -> *mut ::std::os::raw::c_int; }
The text was updated successfully, but these errors were encountered:
Which clang version is this?
Sorry, something went wrong.
This sounds like #528
I've clang-3.8, clang-3.9 and and old libclang1-3.6 installed. After removing clang-3.8 and old libclang1-3.6, the problem is fixed.
Thanks.
Closed as a dupe of #528 then, thanks for checking!
There's a workaround explained there.
No branches or pull requests
Like #728, but for 32 bit Linux.
Input C/C++ Header
Bindgen Invocation
Actual Results
Expected Results
The text was updated successfully, but these errors were encountered: