Commit 95c0829d by Tobias Langer

Parallelization for building our stuff.

parent 607d2959
...@@ -62,7 +62,7 @@ def main(): ...@@ -62,7 +62,7 @@ def main():
args = parser.parse_args() args = parser.parse_args()
with cd(args.path): with cd(args.path):
result = call(['make']) result = call(['make', '-j10'])
if result is not 0 and result is not 2: if result is not 0 and result is not 2:
print('Failed building the experiments!', file=sys.stderr) print('Failed building the experiments!', file=sys.stderr)
sys.exit(1) sys.exit(1)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment