If you compile with -fvisibility=hidden
or with msvc you have to export your shared library symbols manually. As an experiment, how could you find them automatically with AST matchers (clang-query)?
It's not that easy as a minimal set of export declarations is desired and things quickly get complicated with inline functions, templates, out-of-line template definitions, static data members, etc.
A general answer in LLVM IR or C++ standard parlance is also welcome.
Not sure about
clang-query
but if clients of your library use existing public headers you can collect declarations by expecting them vialibclang
. A simple example of this is given in ShlibVisibilityChecker project (it identifies spurious exports from shared libs).