Compilers and linkers: Difference between revisions

From LPTMS Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:
* [http://www.gnu.org/software/make/manual/make.html Gnu Make]
* [http://www.gnu.org/software/make/manual/make.html Gnu Make]
* [http://www.cmake.org Cmake]
* [http://www.cmake.org Cmake]
* imake


==Version Control==
==Version Control==
Line 13: Line 14:
* [http://www.nongnu.org/cvs CVS]
* [http://www.nongnu.org/cvs CVS]


==Makedepend==
==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 [http://en.wikipedia.org/wiki/Makedepend makedepend] command provided by the compiler. For instance, gcc offers the ''gccmakedep'' command.
* in order to list dependencies of headers to the std library in c++, one rather uses an equivalent of the old [http://en.wikipedia.org/wiki/Makedepend makedepend] command provided by the compiler. For instance, gcc offers the ''gccmakedep'' command.

Revision as of 11:39, 21 April 2011

Compilers

Installing

Version Control

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.