Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
247 views

Is using --start-group and --end-group when linking faster than creating a static library?

If one builds static libraries in one's build scripts and one wants to use those static libraries in linking the final executable, the order one mentions the .a files is important: g++ main.o hw.a ...