You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calling option wrap-static-fns with -x c++ to force C++ mode (this also happens when simply calling bindgen on a .hpp file) (https://rust-lang.github.io/rust-bindgen/cpp.html) fails to create extern.cpp.
Calling option
wrap-static-fns
with-x c++
to force C++ mode (this also happens when simply calling bindgen on a .hpp file) (https://rust-lang.github.io/rust-bindgen/cpp.html) fails to createextern.cpp
.Considering this simple
test.h
file:Calling bindgen with
-x c++
to force C++ mode:Doesn't generate
extern.c
at the default path (/tmp/bindgen
on unix systems):Here's the default behavior without C++ mode (or
.hpp
):Which does generate the static wrapper:
The text was updated successfully, but these errors were encountered: