What are the --start-group and --end-group command line options?

GccLinkerLd

Gcc Problem Overview


What is the purpose of those command line options? Please help to decipher the meaning of the following command line:

-Wl,--start-group -lmy_lib -lyour_lib -lhis_lib -Wl,--end-group -ltheir_lib

Apparently it has something to do with linking, but the GNU manual is quiet what exactly grouping means.

Gcc Solutions


Solution 1 - Gcc

It is for resolving circular dependences between several libraries (listed between -( and -)).

Citing https://stackoverflow.com/questions/45135/linker-order-gcc/409470#409470 or man ld http://linux.die.net/man/1/ld

> -( 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.

So, libraries inside the group can be searched for new symbols several time, and you need no ugly constructs like -llib1 -llib2 -llib1

PS archive means basically a static library (*.a files)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionpic11View Question on Stackoverflow
Solution 1 - GccosgxView Answer on Stackoverflow