Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy J Fontaine <tjfontaine@gmail.com>2013-12-07 09:00:32 +0400
committerTimothy J Fontaine <tjfontaine@gmail.com>2013-12-07 09:07:46 +0400
commit2905884b63eb24184b576b1a963a4d72b0159171 (patch)
tree995a6d16da1e365c28135e33efc533384f20cbf9 /configure
parentb5e161989cc3551ad7ec3723801a696fdbbf1525 (diff)
build: pass --no-parallel by default to gyp
gyp by default now tries to process gyp files in parallel by using python's multiprocessing module, but it has problems on oddball platforms. We don't have many files or complex dependency chains that would benefit from parallel processing so disable by deafult fixes #6640
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 0053b8de700..72c3c5f30a6 100755
--- a/configure
+++ b/configure
@@ -695,7 +695,7 @@ config = '\n'.join(map('='.join, config.iteritems())) + '\n'
write('config.mk',
'# Do not edit. Generated by the configure script.\n' + config)
-gyp_args = [sys.executable, 'tools/gyp_node.py']
+gyp_args = [sys.executable, 'tools/gyp_node.py', '--no-parallel']
if options.use_ninja:
gyp_args += ['-f', 'ninja-' + flavor]