2014-06-25 02:57:24 +04:00
|
|
|
# A monkey patch of the base distutils.ccompiler to use parallel builds
|
|
|
|
# Tested on 2.7, looks to be identical to 3.3.
|
|
|
|
|
2015-05-23 13:28:41 +03:00
|
|
|
from __future__ import print_function
|
2014-06-25 02:57:24 +04:00
|
|
|
from multiprocessing import Pool, cpu_count
|
|
|
|
from distutils.ccompiler import CCompiler
|
2015-04-24 03:15:14 +03:00
|
|
|
import os
|
|
|
|
import sys
|
2014-06-25 02:57:24 +04:00
|
|
|
|
2014-07-09 21:12:43 +04:00
|
|
|
try:
|
2014-12-08 22:15:44 +03:00
|
|
|
MAX_PROCS = int(os.environ.get('MAX_CONCURRENCY', min(4, cpu_count())))
|
|
|
|
except NotImplementedError:
|
2014-07-09 21:12:43 +04:00
|
|
|
MAX_PROCS = None
|
2014-08-28 15:44:19 +04:00
|
|
|
|
2014-06-28 03:13:00 +04:00
|
|
|
|
2014-06-25 02:57:24 +04:00
|
|
|
# hideous monkeypatching. but. but. but.
|
|
|
|
def _mp_compile_one(tp):
|
|
|
|
(self, obj, build, cc_args, extra_postargs, pp_opts) = tp
|
|
|
|
try:
|
|
|
|
src, ext = build[obj]
|
|
|
|
except KeyError:
|
|
|
|
return
|
|
|
|
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
|
|
|
|
return
|
|
|
|
|
2014-06-28 03:13:00 +04:00
|
|
|
|
2014-06-25 02:57:24 +04:00
|
|
|
def _mp_compile(self, sources, output_dir=None, macros=None,
|
|
|
|
include_dirs=None, debug=0, extra_preargs=None,
|
|
|
|
extra_postargs=None, depends=None):
|
|
|
|
"""Compile one or more source files.
|
2014-06-28 03:13:00 +04:00
|
|
|
|
2014-06-25 02:57:24 +04:00
|
|
|
see distutils.ccompiler.CCompiler.compile for comments.
|
|
|
|
"""
|
|
|
|
# A concrete compiler class can either override this method
|
|
|
|
# entirely or implement _compile().
|
|
|
|
|
2014-06-28 03:13:00 +04:00
|
|
|
macros, objects, extra_postargs, pp_opts, build = self._setup_compile(
|
|
|
|
output_dir, macros, include_dirs, sources, depends, extra_postargs)
|
|
|
|
cc_args = self._get_cc_args(pp_opts, debug, extra_preargs)
|
2014-06-25 02:57:24 +04:00
|
|
|
|
2014-07-09 21:12:43 +04:00
|
|
|
pool = Pool(MAX_PROCS)
|
2014-06-25 02:57:24 +04:00
|
|
|
try:
|
2015-04-24 03:15:14 +03:00
|
|
|
print("Building using %d processes" % pool._processes)
|
2014-06-28 03:13:00 +04:00
|
|
|
except:
|
|
|
|
pass
|
2014-07-09 21:12:43 +04:00
|
|
|
arr = [(self, obj, build, cc_args, extra_postargs, pp_opts)
|
|
|
|
for obj in objects]
|
2014-06-28 03:13:00 +04:00
|
|
|
pool.map_async(_mp_compile_one, arr)
|
2014-06-25 02:57:24 +04:00
|
|
|
pool.close()
|
|
|
|
pool.join()
|
|
|
|
# Return *all* object filenames, not just the ones we just built.
|
|
|
|
return objects
|
|
|
|
|
2015-09-09 23:07:03 +03:00
|
|
|
|
|
|
|
def install():
|
|
|
|
|
2015-09-11 12:28:19 +03:00
|
|
|
fl_pypy3 = hasattr(sys, 'pypy_version_info') and sys.version_info > (3, 0)
|
2015-09-09 23:07:03 +03:00
|
|
|
fl_win = sys.platform.startswith('win')
|
2016-02-01 19:11:42 +03:00
|
|
|
fl_cygwin = sys.platform.startswith('cygwin')
|
2015-09-11 12:28:19 +03:00
|
|
|
|
2015-09-09 23:07:03 +03:00
|
|
|
if fl_pypy3:
|
|
|
|
# see https://github.com/travis-ci/travis-ci/issues/3587
|
|
|
|
print("Single threaded build for pypy3")
|
|
|
|
return
|
2015-09-11 12:28:19 +03:00
|
|
|
|
2016-02-01 19:11:42 +03:00
|
|
|
if fl_win or fl_cygwin:
|
2015-09-09 23:07:03 +03:00
|
|
|
#windows barfs on multiprocessing installs
|
|
|
|
print("Single threaded build for windows")
|
|
|
|
return
|
2015-09-11 12:28:19 +03:00
|
|
|
|
2015-09-09 23:07:03 +03:00
|
|
|
if MAX_PROCS != 1:
|
|
|
|
# explicitly don't enable if environment says 1 processor
|
|
|
|
try:
|
|
|
|
# bug, only enable if we can make a Pool. see issue #790 and
|
|
|
|
# http://stackoverflow.com/questions/6033599/oserror-38-errno-38-with-multiprocessing
|
|
|
|
pool = Pool(2)
|
|
|
|
CCompiler.compile = _mp_compile
|
|
|
|
except Exception as msg:
|
2015-09-13 16:31:49 +03:00
|
|
|
print("Exception installing mp_compile, proceeding without:"
|
|
|
|
"%s" % msg)
|
2015-09-09 23:07:03 +03:00
|
|
|
else:
|
2015-09-13 16:31:49 +03:00
|
|
|
print("Single threaded build, not installing mp_compile:"
|
|
|
|
"%s processes" % MAX_PROCS)
|
2015-09-09 23:07:03 +03:00
|
|
|
|
|
|
|
install()
|