When I include boost library hpp header in two translation units, does the boost code compile twice (and the binary size is double, comparing to the traditional precompiled library?)?
How does (boost like) header only libraries influence compilation size?
1k Views Asked by user2449761 At
2
There are 2 best solutions below
0

There are some boost header files which are particularly large(I'm looking at you boost/lexical_cast.hpp), which will cause the binary to be larger. However, compilers offer some options to help:
MSVC has an option /LTCG (Link-time Code Generation)
GCC has -flto(I believe is enabled with -O3)
These options generally permit the linker to discard unused components and reduce duplication across the compilation unit.
You've asked two distinct questions:
does the boost code compile twice? Yes it does. The net effect is that compilation time is probably a little longer as the compiler has to digest all the headers for each compilation unit.
the binary size is double? No it probably does not, but that will come down to your choice of optimisation flags. A template instantiated in unit A will notionally share the same implementation code as one instantiated in unit B with exact same type parameters.
Whether it actually shares the same code will depend on whether your optimisation flags permit inlining of the template implementation. If you have allowed inlining and the compiler has chosen to do it then your binary size will increase as the compiler places the template implementation inline with your code in order to achieve your stated optimisation goals.
Inlining is never possible with a binary-only library and so this is one reason why your binary size could grow when using header-only libraries.
Here's an example to show how gcc shares template implementation when inlining is not enabled:
a.cpp
b.cpp
m.cpp
compilation
analysis of objdump
Note how the same implementation of
push_back
is used (location 400976) even though it was compiled into completely separate compilation units.