This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author matrixise
Recipients christian.heimes, matrixise, pitrou, rhettinger, steve.dower
Date 2019-02-08.09:30:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1549618250.7.0.00465874115108.issue35921@roundup.psfhosted.org>
In-reply-to
Content
Hi @Raymond

I use this script since 1 year for the compilation of Python,

https://github.com/python/cpython/pull/11773#issuecomment-461179522

#!/usr/bin/env fish

set number_of_cpu (python3 -c "import os; print(os.sysconf('SC_NPROCESSORS_ONLN'))")

./configure --prefix=$PWD-build --with-pydebug --silent -C > stdout.txt ^ stderr.txt
make CC="/usr/bin/ccache gcc" --jobs $number_of_cpu --silent > stdout.txt ^ stderr.txt


Really useful because I use the cache of configure.ac and ccache for makefile. Now we could use distcc (for a distributed compilation or alternative) but I don't think the result will be really significative.
History
Date User Action Args
2019-02-08 09:30:52matrixisesetrecipients: + matrixise, rhettinger, pitrou, christian.heimes, steve.dower
2019-02-08 09:30:50matrixisesetmessageid: <1549618250.7.0.00465874115108.issue35921@roundup.psfhosted.org>
2019-02-08 09:30:50matrixiselinkissue35921 messages
2019-02-08 09:30:50matrixisecreate