Tagged Questions

3
votes
2answers
2k views

Convert .o file to .exe

Is it possible to convert an object file .o that was created from a .c source code to .exe? And if it is possible is there a direct command using gcc?
2
votes
2answers
216 views

Problem when using C object file (.o) in different computers

I'm trying to create an object file which can be useable in any computer. So what I did was create bunch of functions and placed them in a .c file. Used gcc -c myfile.c which produces myfile.o. (I'm ...
0
votes
1answer
49 views

symtab entries in a .o file of elf format

i am learning about linking.. i wrote the following code in c and made .o using gcc int f() { static int x=0; return x; } extern int z; int g() { static int x=10; return x; } static int y; static ...