Game Development Community

Compile with Multiple Cores

by Charlie Sibbach · in Torque Game Engine · 12/11/2008 (7:05 pm) · 2 replies

Is it possible to change the linux makefile in such a way that it will compile two files at once (one per core)? XCode does this on OSX, and it's one of the few times I really appreciate that second core.

#1
12/11/2008 (8:46 pm)
make --help

*snip*

-j [N], --jobs[=N] Allow N jobs at once; infinite jobs with no arg

*snip*
#2
12/12/2008 (8:26 am)
Oh. Well then, onwards and upwards! Thanks for doing my research on make!