From eaf92cc7dc47c4ae335d0807e83bb7d7865cc3ce Mon Sep 17 00:00:00 2001 From: Jonathan Goyvaerts Date: Wed, 8 May 2019 19:11:09 +0200 Subject: [PATCH] Default the number of parallel build threads to 4 so clang doesn't run out of memory (both local and on travis-ci) --- xenia-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xenia-build b/xenia-build index 58215d3bc..8a612ecd9 100755 --- a/xenia-build +++ b/xenia-build @@ -597,7 +597,7 @@ class BaseBuildCommand(Command): '--no_premake', action='store_true', help='Skips running premake before building.') self.parser.add_argument( - '-j', default=0, type=int, help='Number of parallel threads') + '-j', default=4, type=int, help='Number of parallel threads') def execute(self, args, pass_args, cwd): if not args['no_premake']: