I read a few posts and concluded that extern tells compiler that \"This function exists, but the code for it is somewhere else. Don\'t panic.\" But how does the linker know
When you compile a .o file in the ELF format, you have many things on the .o
file such as:
.text
section containing the code;.data
, .rodata
, .rss
sections containing the global variables;.symtab
containing the list of the symbols (functions, global variables and others) in the .o
(and their location in the file) as well as the symbols used by the .o
file;.rela.text
which are list of relocations -- these are the modifications that the link editor (and/or the dynamic linker) will have to make in order to link the differents parts of you program together.Let's compile a simple C file:
extern void GrCircleDraw(int x);
int foo()
{
GrCircleDraw(42);
return 3;
}
int bla()
{
return 2;
}
with:
gcc -o test.o test.c -c
(I'm using the native compiler of my system but it will work quite the same when cross-compiling to ARM).
You can look at the content of your .o file with:
readelf -a test.o
In the symbol table, you will find:
Symbol table '.symtab' contains 10 entries: Num: Value Size Type Bind Vis Ndx Name 0: 0000000000000000 0 NOTYPE LOCAL DEFAULT UND [...] 8: 0000000000000000 21 FUNC GLOBAL DEFAULT 1 foo 9: 0000000000000000 0 NOTYPE GLOBAL DEFAULT UND GrCircleDraw 10: 0000000000000015 11 FUNC GLOBAL DEFAULT 1 bla
There is one symbol for our foo
functions and one for bla
. The value field give their location within the .text
section.
There is one symbol for the used symbol GrCircleDraw
: it is undefined because this functions is not defined in this .o
file but remains to be found elsewhere.
In the relocation table for the .text
section (.rela.text
) you find:
Relocation section '.rela.text' at offset 0x260 contains 1 entries: Offset Info Type Sym. Value Sym. Name + Addend 00000000000a 000900000002 R_X86_64_PC32 0000000000000000 GrCircleDraw - 4
This address is within foo
: the link editor will patch the instruction at this address with the address of the GrCircleDraw
function.
Now let's compile ourself an implementation of GrCircleDraw
:
void GrCircleDraw(int x)
{
}
Let's look at it's symbol table:
Symbol table '.symtab' contains 9 entries: Num: Value Size Type Bind Vis Ndx Name [...] 8: 0000000000000000 9 FUNC GLOBAL DEFAULT 1 GrCircleDraw
It has an entry for GrCircleDraw
defining its location within its .text
section.
So when the link editor combines both files together it knowns:
.o
file and their locations;The compiler is placing just the name of the extern
function into the .obj
file. Compiler does not need to know more about it.
When you start linking, it is your responsibility as a developer to give all necessary object files and library files to the linker. Linker will arrange all these functions into a binary. If you do not specify the right libraries or .obj
files, the linking will simply fail with unresolved blah-blah
.
Default libraries are typically included implicitly. This complicates things and creates illusions. You can always specify that you do not want any implicit libraries and include everything explicitly. Unfortunately every system does this in its own way.
Linking usually happens this way: The command line is iterated over and every argument given is
At the end, every reference has to be fulfilled in order to successfully link. The order of lines given at the linker command line is important.
The simple answer is that "the compiler doesn't need to know, but the linker has to be able to find it". Through multiple .o
files, or through libraries, the linker has to be able to find a single definition of the GrCircleDraw
function.