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?

link|improve this question

49% accept rate
What is the source of this quote? – jeffamaphone Jul 18 '10 at 8:14
CImg is an open source project. – user198729 Jul 18 '10 at 8:27
1  
feedback

3 Answers

up vote 6 down vote accepted

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 #include it, and so it is part of the same compilation process as the rest of your program, and the compiler can easily determine which parts of the library are used, and which ones aren't.

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.

link|improve this answer
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.

link|improve this answer
You mean this feature is automatically available for a C++ linker? – user198729 Jul 18 '10 at 8:27
As per Necrolis' post, yes. – Will A Jul 18 '10 at 8:45
feedback

This sounds like MSVC's Eliminate Unreferenced Data (/OPT:REF) linker command, GCC should have something similar too this too

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.