1,554
edits
(→Creating an Xcode project: clarify the create_project compilation instructions) |
(→Compiling ScummVM: clarified -j) |
||
Line 157: | Line 157: | ||
=== Compiling ScummVM === | === Compiling ScummVM === | ||
Just run make (with -j to compile several files in parallel). For example: | Just run make (with -j to compile several files in parallel, usually number of your virtual CPUs+2). For example, for a 2 core CPU: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
make -j4 | make -j4 | ||
</syntaxhighlight> | </syntaxhighlight> | ||
or -j18 for a 16-core CPU (including hyperthreaded cores). | |||
To recompile everything and not just the modified files: | To recompile everything and not just the modified files: |