diff options
| author | Jonathan Goyvaerts <jonathan.goyvaerts@gmail.com> | 2019-05-08 19:11:09 +0200 |
|---|---|---|
| committer | Jonathan Goyvaerts <jonathan.goyvaerts@gmail.com> | 2019-08-03 02:34:29 +0200 |
| commit | eaf92cc7dc47c4ae335d0807e83bb7d7865cc3ce (patch) | |
| tree | 9d0528140030fa5df4a25e738a927df06e1e1444 | |
| parent | 2a1d67eada999b249d81a0485f2fef286fdf78cb (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-x | xenia-build | 2 |
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']: |
