meta data for this page
  •  

This is an old revision of the document!


Linker

  • –as-needed - do not load symbols from libraries specified in command line when they are not needed. This option couses many unresolved symbol errors when order of libraries specified in command line is not correct. http://savannah.gnu.org/forum/forum.php?forum_id=5655

Optimize per function

int foo(int i) __attribute__((optimize("-O3")));