I am working on a project which needs to be executed in a Linux machine that has turned out not to have the GLIBCXX_3.4.20
version of a library, but the code needs it. Is there anyway to find which part of my code (C++) asks for this version?
I read the ELF file using objdump
and realdef
and I found which symbol needs it:
_ZSt24__throw_out_of_rang@GLIBCXX_3.4.20 (4)
but I don't know to which part of my code can be related.