The order of libs matter in GCC

| | Comments (0)

The order of the libraries in a link command line makes difference
when compiling using GCC. Differently from Windows, the list of linking
libraries must be in the descend order of dependency, that is, the most
dependent first and the less dependent last.

Our construction mechanism keep the order of the list defined in the SConstruct, so, keep the libraries in the correct order there.

Leave a comment