开发者

How to handle linker errors in C++/GNU toolchain?

Given a C++/开发者_如何学JAVAGNU toolchain, what's a good method or tool or strategy to puzzle out linker errors?


Not sure exactly what you mean but if you are talking about cryptic linker symbols like:

mylib.so: undefined symbol: _ZN5CandyD2Ev

you can use c++filt to do the puzzling for you.

c++filt _ZN5CandyD2Ev

will return Candy::~Candy() so somehow Candy's destructor didn't get linked.


With gcc toolchain, I use:

  • nm: to find the symbols in object files
  • ld: to find how a library links
  • c++filt: to find the C++ name of a symbol from its mangled name

Check this for details.


Well the first thing would be RTFM. No, seriously, read the documentation.

If you don't want to do that, try a search on the error that comes up.

Here are a few other things to remember: "missing" symbols are often an indication that you haven't included the appropriate source or library; "missing" symbols are sometimes an indication that you're attempting to link a library created with a different mangling convention (or a different compiler); make sure that you have extern "C" where appropriate; declaring and defining aren't the same thing; if your compiler doesn't support "export" make sure your template code is available for when you instantiate objects.


Look at the names of the symbols that are reported to be problematic.

  • If there are missing symbols reported, find out in which source files or libraries those function/... should be defined in. Inspect the compilation/linker settings to find out why these files aren't compiled or linked.
  • If there are multiply defined symbols the linker usually mentions which object files or libraries contain them. Look at those files/their sources to find out why the offending functions/... are included in both of them.
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜