The compilation is done on the fly : only CImg functionalities really used by your program are compiled and appear in the compiled executable program. This leads to very compact code, without any unused stuffs.
Any one knows the principle?
feedback
|
|
CImg is a header-only library, and they use templates liberally, which is what they're referring to. If they used a precompiled library of some kind (.dll/.lib/.a/.so) the library file would have to contain the entire CImg library, regardless of which bits of it you actually use. In the case of a statically linked library (.lib or .a), the linker can then strip out unused symbols, but that may depend on optimization settings. When the entire library is included in one or two headers, it is only actually compiled when you And because the CImg API uses templates, no code is generated for functions that are never called. They are overselling it a bit though, because as the other answers point out, unused symbols will usually be stripped out anyway. | |||
|
feedback
|
|
Sounds like fairly standard behaviour to me - a C++ linker will usually throw away any unused library references rather than including uncallable code. Similarly, an optimized build will not include uncallable code. | |||||
|
feedback
|
|
This sounds like MSVC's | |||
|
feedback
|