Skip to content

Latest commit

 

History

History

LTO

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

LINK TIME OPTIMIZATION

Link Time Optimization is a form of interprocedural optimization that is performed at the time of linking application code. Without LTO, the Compiler compiles and optimizes each source file independently of one another, then links them to form the executable.

alt text

how to test

Compile the code and see the time results. Remove comment from line 14 or 16 in cmake file and see the new results.