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 where the function is defined.
My CASE:- I am working on Keil uvision 4. There is a header file grlib.h and the main function is in grlib_demo.c(it includes grlib.h). Now, there is a function GrCircleDraw() which is defined in Circle.c and called in grlib_demo.c, there is also a statement
extern void GrCircleDraw(all arguments);
in grlib.h. My query is how linker knows where the definition of GrCircleDraw() is since Circle.c is not included in grlib.h and grlib_demo.c
Note :- The files grlib.h and Circle.c are in the same folder. The code runs successfully.
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 theGrCircleDraw
function.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 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 withunresolved 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.
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.On the caller side
Let's compile a simple C file:
with:
(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:
In the symbol table, you will find:
There is one symbol for our
foo
functions and one forbla
. 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:This address is within
foo
: the link editor will patch the instruction at this address with the address of theGrCircleDraw
function.On the callee side
Now let's compile ourself an implementation of
GrCircleDraw
:Let's look at it's symbol table:
It has an entry for
GrCircleDraw
defining its location within its.text
section.Linking them together
So when the link editor combines both files together it knowns:
.o
file and their locations;