gccint: LTO

1 
1 25 Link Time Optimization
1 *************************
1 
1 Link Time Optimization (LTO) gives GCC the capability of dumping its
1 internal representation (GIMPLE) to disk, so that all the different
1 compilation units that make up a single executable can be optimized as a
1 single module.  This expands the scope of inter-procedural optimizations
1 to encompass the whole program (or, rather, everything that is visible
1 at link time).
1 

Menu