Accelerating buildsΒΆ
distutils by default compiles using a single process. To enable faster, multiprocess compilations just use:
from snakehouse import monkey_patch_parallel_compilation
monkey_patch_parallel_compilation()
In your setup.py before your call to setup().
It is also used in example so you can just copy that.