Order of objects in a static library

3k Views Asked by At

I have a C project using several object files that needs to be linked in a specific order to find all needed symbols.

For example this command works fine (lib2.o depends on lib1.o etc.)

gcc -o my_app main.o lib1.o lib2.o lib3.o -lm

but

gcc -o my_app main.o lib3.o lib2.o lib1.o -lm

ends with undefined reference to `my_variable' errors.

This is a known behavior and can be solved for example by adding these objects to GROUP section in a linker script.

Now I'd like to share these object as a static library with my colleagues. So...

ar -rcs mylib.a lib1.o lib2.o lib3.o
gcc -o my_app main.o mylib.a -lm

Unfortunately this gives the same undefined reference errors like the specifying the objects in incorrect order.

I have not found any linker or archiver options to make it working and also no solution by googling even if I think that this problem should be relatively common.

Do please anybody know a solution?

regards Jan

2

There are 2 best solutions below

4
On

This might be a link order problem. When the GNU linker sees a library, it discards all symbols that it doesn't need. It also does that in the sequential order form left to right.

Recent versions of gcc/ld default to linking with --as-needed flag.

This means if you write -lmylib.a before the C file the library will automatically get excluded (the order matters when testing if things are "needed" like this)

You can fix this with either:

  1. gcc -L. -o example example.c -lmylib.a
  2. gcc -L. -Wl,--no-as-needed -o example example.c -lmylib.a

The latter of which passes --no-as-needed to the linker, which would cause the library to still be linked, even if you didn't call any function external from it.

2
On

Your error implies that the problem is in one of your lib?.o files [lib{later}.o depends on lib{earlier}.o]
How did you manage to compile them?
Were there any compilation warnings?
It has been a while since I used C, but I think that you will need to include dependent libraries within the library that has the dependency - this may be the reason why you can't find too many references to the problem, because it does not really exist.