Tagged Questions
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)
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 ...
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 ...