Parallel builds of Pythons, from 6mn to 2mn on my machine.

This commit is contained in:
Julien Palard 2019-12-12 09:58:50 +01:00
parent 70103e23af
commit 89a2f54f7f
1 changed files with 7 additions and 6 deletions

13
.bashrc
View File

@ -183,12 +183,13 @@ compile_python()
compile_all_pythons()
{
compile_python 2.7.16
compile_python 3.4.10
compile_python 3.5.7
compile_python 3.6.9
compile_python 3.7.5
compile_python 3.8.0
compile_python 2.7.17 &
compile_python 3.4.10 &
compile_python 3.5.8 &
compile_python 3.6.9 &
compile_python 3.7.5 &
compile_python 3.8.0 &
wait
}
_compile_python()