Skip to content

Commit

Permalink
build: pass --no-parallel by default to gyp
Browse files Browse the repository at this point in the history
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 nodejs#6640
  • Loading branch information
tjfontaine committed Dec 7, 2013
1 parent b5e1619 commit 2905884
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 2905884

Please sign in to comment.