From aaa36bf5cf428d2188d3d329cf7a863fe7eba4c6 Mon Sep 17 00:00:00 2001 From: mrg Date: Thu, 1 Oct 2020 09:55:17 -0700 Subject: [PATCH] Default to 2 threads only --- compiler/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/options.py b/compiler/options.py index 2508a5b7..d28d3573 100644 --- a/compiler/options.py +++ b/compiler/options.py @@ -120,7 +120,7 @@ class options(optparse.Values): magic_exe = None # Number of threads to use - num_threads = 4 + num_threads = 2 # Should we print out the banner at startup print_banner = True