Skip to content

Commit 2905884

Browse files
committed
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
1 parent b5e1619 commit 2905884

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ config = '\n'.join(map('='.join, config.iteritems())) + '\n'
695695
write('config.mk',
696696
'# Do not edit. Generated by the configure script.\n' + config)
697697

698-
gyp_args = [sys.executable, 'tools/gyp_node.py']
698+
gyp_args = [sys.executable, 'tools/gyp_node.py', '--no-parallel']
699699

700700
if options.use_ninja:
701701
gyp_args += ['-f', 'ninja-' + flavor]

0 commit comments

Comments
 (0)