From: Timothy J Fontaine Date: Sat, 7 Dec 2013 05:00:32 +0000 (-0800) Subject: build: pass --no-parallel by default to gyp X-Git-Tag: v0.10.23~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2905884b63eb24184b576b1a963a4d72b0159171;p=platform%2Fupstream%2Fnodejs.git 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 --- diff --git a/configure b/configure index 0053b8d..72c3c5f 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]