Search for functions using a static string in the .rodata section

For example, I have an object file x.o, without source code. The file is an ELF file compiled on Linux.

There .rodatais a line in the file section my-string(it can be viewed with readelf -p .rodata x.o).

Is there any way to find out what functions in the object file use this line?

+4
source share

Source: https://habr.com/ru/post/1695410/


All Articles