summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Goyvaerts <jonathan.goyvaerts@gmail.com>2019-05-08 19:11:09 +0200
committerJonathan Goyvaerts <jonathan.goyvaerts@gmail.com>2019-08-03 02:34:29 +0200
commiteaf92cc7dc47c4ae335d0807e83bb7d7865cc3ce (patch)
tree9d0528140030fa5df4a25e738a927df06e1e1444
parent2a1d67eada999b249d81a0485f2fef286fdf78cb (diff)
Default the number of parallel build threads to 4 so clang doesn't run out of memory (both local and on travis-ci)
-rwxr-xr-xxenia-build2
1 files changed, 1 insertions, 1 deletions
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']: