Tagged Questions

4
votes
4answers
139 views

How can I see the 0s and 1s / machine code from a executable file / object file?

I already tried this, I opened a a.out file with a text editor but I get only a bunch of characters with some instructions in it like: üÙ
4
votes
3answers
578 views

Doubts in executable and relocatable object file

I have written a simple Hello World program. #include <stdio.h> int main() { printf("Hello World"); return 0; } I wanted to understand how the relocatable object file and ...
2
votes
1answer
1k views

What is the difference between a .o object file and a .so library file?

Like the title says, what is the difference between a "program object file" (.o extension) and a "library file" (.so extension)
1
vote
2answers
413 views

Object files in an executable in Linux

Is there a way to find the object files from which the current executable is generated in Linux (RHEL to be specific). I understand that one can use "nm" to find the exported symbols, "ldd" to find ...