Libclang API to get function definitions defined in a different file

99封情书 提交于 2019-12-04 20:53:19

No, there is no need for actually compiling your code to object files.

The link between symbols in both translation units can be established using USR (Unified Symbol Resolution). When you find an interesting place in the AST of a translation unit (represented by a CXCursor in libclang), call clang_getCursorUSR() to get the associated USR.

If two CXCursor have the same USR, even in two different translation units, they are associated to the same symbol.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!