diff --git a/README.md b/README.md index ffc25dc6d83aa284a2dba9bbaa101e3c0455cd74..929e861bb6699fc89b97148f7839831b7844d189 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,20 @@ a part of your pull request as well! Note what have you changed in [CHANGELOG.md](/CHANGELOG.md) as well! +Accelerating builds +------------------- + +distutils by default compiles using a single process. To enable faster, multiprocess compilations +just type: + +```python +from snakehouse import monkey_patch_parallel_compilation + +monkey_patch_parallel_compilation() +```` + +Before your `setup()` call. + Usage notes - MANDATORY READING ------------------------------- Take a look at [example](example/) on how to multi-build your Cython extensions.