0
votes
0answers
161 views

How to convert shared library to static?

If I have all shared libraries to make a.out, I think I can make static libary from those cause I have all binary code to make a binary. But there aren't any insturctions how to do it. The only ...
0
votes
1answer
632 views

objdump/readelf get variables information

I need to get the information about global variables from a compiled c program. I asked a similar question in here. The problem that I have now is that the program where I am trying to extract the ...
0
votes
2answers
168 views

gcc to tell a register compiled from which variable

I need to know from which variable is a register of a binary instruction in the obj file is compiled from. In short: the mapping from the register to variable for each instruction Example: suppose ...