The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
171 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 ...
0
votes
1answer
644 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 ...
1
vote
0answers
254 views

Address of element within a structure from elf executable

Is it possible to obtain the address of an element within a structure from an ELF executable not compile for debug? Example, given the following code: typedef struct { int tokyo; int paris; ...
0
votes
0answers
42 views

readelf error: not an elf file, wrong magic bytes at the start

I am trying to learn and use Elfreader by compiling a simple hello world program to a elf file as- gcc -o test test.c The file compiles correctly and runs perfect. But when I try to run ReadElf on ...
0
votes
0answers
165 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 ...