Velocizzare la compilazione

From FreeCAD Documentation
Revision as of 21:08, 6 February 2017 by Renatorivo (talk | contribs) (Created page with "=== CCache === Installare ccache per la costruzione cache")

Quando si sviluppa FreeCAD si ha la necessità di costruire dai sorgenti e la fase di compilazione o costruzione può assorbire del tempo che è invece prezioso per lo sviluppo. Ecco alcuni suggerimenti per abbreviare questo processo e rendere più efficiente il tempo di costruzione.

CCache

Installare ccache per la costruzione cache

Disable Modules

Use cmake-curses-gui, cmake-qt-gui, or cmake flags to disable modules you aren't working on

make -j

Use make -j # to specify the number of jobs. A suggested value is your number of computer cores, e.g.

make -j $(nproc)
Compiling on Mac
Third Party Libraries