Tagged Questions
4
votes
3answers
641 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 ...
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
110 views
Implementing tool that tracks down C memory errors, finding where my overrided malloc etc is called from
I've been asked to implement a tool ( for linux ) which helps with the memory management of C/C++ programs. Main objective is to track down memory leaks but I am also checking for overlapping ...
-1
votes
1answer
33 views
Extracting a single procedure from an object file?
I have a 64-bit COFF object file (no source code or debug info) from which I need to extract a single procedure.
The procedure is relatively short, and its only dependencies are:
One global ...