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 int y=9;
int main()
{
return 0;
}
then i made this into .o by:
gcc begin.c -o begin.o
now when i checked the symtab using readelf there was no record of z....why?
also how does gcc allow two 'y'?
and in .data section how are the two 'x' differentiated?
gcccommand is producing an executable, not just an object file, namedbegin.o. Are you actually running it with-c? – Wil Cooley Nov 5 '11 at 8:21