Don't choose jobs based on processor

Leads to lots of builds with out-of-memory.
pull/22966/head
Ryan Dahl 2010-09-20 16:51:47 -07:00
parent 754fde7325
commit 9922e4e433
1 changed files with 1 additions and 6 deletions

View File

@ -18,12 +18,7 @@ blddir = 'build'
jobs=1 jobs=1
if os.environ.has_key('JOBS'): if os.environ.has_key('JOBS'):
jobs = int(os.environ['JOBS']) jobs = int(os.environ['JOBS'])
else:
try:
import multiprocessing
jobs = multiprocessing.cpu_count()
except:
pass
def set_options(opt): def set_options(opt):
# the gcc module provides a --debug-level option # the gcc module provides a --debug-level option