Compilers and linkers: Difference between revisions

From LPTMS Wiki
Jump to navigation Jump to search
mNo edit summary
 
Line 8: Line 8:
* [http://www.cmake.org Cmake]
* [http://www.cmake.org Cmake]
* imake
* imake
==Version Control==
* [http://subversion.apache.org Subversion]
* [http://bazaar.canonical.com Bazaar]
* [http://www.nongnu.org/cvs CVS]


==Make==
==Make==

Latest revision as of 17:23, 14 October 2011

Compilers

Installing

Make

  • on a multiprocessor or multicore machine, using make -j<n> uses n parallels processes for building objects which speeds up considerably the compilation.

Makedepend

  • in order to list dependencies of headers to the std library in c++, one rather uses an equivalent of the old makedepend command provided by the compiler. For instance, gcc offers the gccmakedep command.