The linking-order tag has no wiki summary.
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 ...