up vote 31 down vote favorite
13
share [g+] share [fb]

Why does the order in which libraries are linked sometimes cause errors?

link|improve this question

feedback

9 Answers

up vote 19 down vote accepted

In theory there is no requirement to link things in a specific order but it never seems to work out. If library A depends on library B then you may need to link library B in first so that the symbols will be found when gcc examines library A. Unless you know the locations of symbols very well you might have to play around a bit. The command nm will dump out a list of symbols in a library.

link|improve this answer
15  
The order does matter because the linker does not make multiple passes through the list of libraries to resolve references. If you reference something and it hasn't seen the library that contains it yet then it's just an error. I think it was a massively stupid decision on the part of the people who did it, but then they don't consult with me before making decisions ;) – Jay Aug 28 '09 at 21:13
feedback

There is no requirements on the linking order of object files or dynamic libraries. Of course, a program that contains undefined behavior or depends on unspecified behavior could be affected by that order. For example, if the order of constructor invocations depends on the link order of object files, and the program accesses objects across translation unit boundaries, then it may access a not yet constructed object - because its translated translation unit was linked after another object file, which contains the other, not yet constructed object. Those effects, however, show up in defect programs - a correct program should not depend on such order.

There are no requirements regarding symbol resolution that could be affected by the link order of dynamic libraries or object files. Runtime effects that depends on that link order, as in the example above, could happen, but should not affect valid programs. Programs should use the tools of the toolchain to make sure they behave correctly. For example GCC has the possibility to control when a constructor runs, and can thereby order the priority of constructor calls at the initialization time of objects.

Anyway, static libraries are required to be linked in this order - otherwise, unresolved references will appear with GNU ld:

If any library A depends on symbols defined in library B, then library A should appear first in the list supplied to the linker

That can sometimes cause trouble in build-scripts that can be configured to link either way. The GNU linker has an option which causes it to resolve cyclic references between A and B:

-( archives -) or --start-group archives --end-group The archives should be a list of archive files. They may be either explicit file names, or -l options.

The specified archives are searched repeatedly until no new undefined references are created. Normally, an archive is searched only once in the order that it is specified on the command line. If a symbol in that archive is needed to resolve an undefined symbol referred to by an object in an archive that appears later on the command line, the linker would not be able to resolve that reference. By grouping the archives, they all be searched repeatedly until all possible references are resolved.

Using this option has a significant performance cost. It is best to use it only when there are unavoidable circular references between two or more archives.

Note that archives in that description refer to static libraries. I've taken it from the manpage of GNU ld (man ld).

One occasion that could be useful is to link together the c runtime library with the gcc low-level support libraries. Here is what my gcc port uses to pass to the linker:

"-lgcc" "-lc" "-lsyscalls" "-lgcc"

Because functions in libgcc may refer to functions defined in the C library, but functions in the C library may refer to functions defined in libgcc as well (it contains such functions as floating point emulation code). Another way to solve that problem could have been to use the start-group and end-group mechanism.

link|improve this answer
to the downvoter - please explain why you downvoted. What does/would your answer say different? I appended some explanation to the top of my answer that more detailed explains what i meant with the situation of single object file link order and how it could affect runtime. Hope it makes it more clearer – Johannes Schaub - litb Apr 28 '09 at 14:38
I've just found this useful, but I came within a fraction of downvoting myself. I've just had a link repeatedly fail for seemingly no reason, only to discover by accident that changing the order of static libraries fixes it. Reading that "There is no requirements on the linking order of object files or dynamic libraries." just seems wrong. Fortunately I read on and came to realise that its accurate - that line doesn't mention static libraries, and you address those later - but it's very easy to be misled by that first line. – Steve314 Jul 11 '10 at 13:23
1  
Repeat until all symbols resolved, eh - you'd think they could manage a topological sort. LLVM has 78 static libraries on it's own, with who-knows-what dependencies. True it also has a script to figure out compile/link options - but you can't use that in all circumstances. – Steve314 Jul 11 '10 at 13:27
Great post Johannes, thanks. I had issues with static library order - the requirements for ordering are the opposite of what I expected! From the ld manpage: "The linker will search an archive only once, at the location where it is specified on the command line. If the archive defines a symbol which was undefined in some object which appeared before the archive on the command line, the linker will include the appropriate file(s) from the archive. However, an undefined symbol in an object appearing later on the command line will not cause the linker to search the archive again." – boycy Aug 18 '11 at 12:07
1  
@Steve that's what the programs lorder + tsort do. But sometimes there is no order, if you have cyclic references. Then you just have to cycle through the libraries list until everything is resolved. – Johannes Schaub - litb Aug 18 '11 at 19:01
show 4 more comments
feedback

The GNU ld linker is a so-called smart linker. It will keep track of the functions used by preceding static libraries, permanently tossing out those functions that are not used from its lookup tables. The result is that if you link a static library too early, then the functions in that library are no longer available to static libraries later on the link line.

The typical UNIX linker works from left to right, so put all your dependent libraries on the left, and the ones that satisfy those dependencies on the right of the link line. You may find that some libraries depend on others while at the same time other libraries depend on them. This is where it gets complicated. When it comes to circular references, fix your code!

link|improve this answer
Very well worded. – ojblass Nov 9 '10 at 17:54
feedback

I have seen this a lot, some of our modules link in excess of a 100 libraries of our code plus system & 3rd party libs.

Depending on different linkers HP/Intel/GCC/SUN/SGI/IBM/etc you can get unresolved functions/variables etc, on some platforms you have to list libraries twice.

For the most part we use structured hierarchy of libraries, core, platform, different layers of abstraction, but for some systems you still have to play with the order in the link command.

Once you hit upon a solution document it so the next developer does not have to work it out again.

My old lecture used to say, "high cohesion & low coupling", it’s still true today.

link|improve this answer
feedback

Here's an example to make it clear how things work with GCC when static libraries are involved. So let's assume we have the following scenario:

  • myprog.o - containing main() function, dependent on libmysqlclient
  • libmysqlclient - static, for the sake of the example (you'd prefer the shared library, of course, as the libmysqlclient is huge); in /usr/local/lib; and dependent on stuff from libz
  • libz (dynamic)

How do we link this? (Note: examples from compiling on Cygwin using gcc 4.3.4)

gcc -L/usr/local/lib -lmysqlclient myprog.o
# undefined reference to `_mysql_init'
# myprog depends on libmysqlclient
# so myprog has to come earlier on the command line

gcc myprog.o -L/usr/local/lib -lmysqlclient
# undefined reference to `_uncompress'
# we have to link with libz, too

gcc myprog.o -lz -L/usr/local/lib -lmysqlclient
# undefined reference to `_uncompress'
# libz is needed by libmysqlclient
# so it has to appear *after* it on the command line

gcc myprog.o -L/usr/local/lib -lmysqlclient -lz
# this works
link|improve this answer
feedback

I would imagine it is because some of those libraries have dependencies on other libraries, and if they have not been linked yet then you would get linker errors.

link|improve this answer
feedback

Link order certainly does matter, at least on some platforms. I have seen crashes for applications linked with libraries in wrong order (where wrong means A linked before B but B depends on A).

link|improve this answer
feedback

You may can use -Xlinker option.

g++ -o foobar  -Xlinker -start-group  -Xlinker libA.a -Xlinker libB.a -Xlinker libC.a  -Xlinker -end-group 

is ALMOST equal to

g++ -o foobar  -Xlinker -start-group  -Xlinker libC.a -Xlinker libB.a -Xlinker libA.a  -Xlinker -end-group 

Careful !

  1. The order within a group is important ! Here's an example: a debug library has a debug routine, but the non-debug library has a weak version of the same. You must put the debug library FIRST in the group or you will resolve to the non-debug version.
  2. You need to precede each library in the group list with -Xlinker
link|improve this answer
feedback

Is this something with only gnu ld/gcc? Or is this something common with linkers?

link|improve this answer
Apparently more Unix compilers have similar issues. MSVC isn't entirely free of these issues, eiher, but they don't appear to be that bad. – MSalters Apr 28 '09 at 14:42
The MS dev tools don't tend to show these issues as much because if you use an all-MS tool chain it ends up setting up the linker order properly, and you never notice the issue. – Michael Kohne Aug 28 '09 at 20:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.