comparison mx/commands.py @ 11377:0fbc1e418c88

fixed capitalization and tense in documentation of some mx commands
author Doug Simon <doug.simon@oracle.com>
date Tue, 20 Aug 2013 15:33:39 +0200
parents 6675167d52b6
children 66251d9f62ab
comparison
equal deleted inserted replaced
11376:a5429101c6bb 11377:0fbc1e418c88
442 442
443 build = _vmbuild if _vmSourcesAvailable else 'product' 443 build = _vmbuild if _vmSourcesAvailable else 'product'
444 print _jdk(build, installGraalJar=False) 444 print _jdk(build, installGraalJar=False)
445 445
446 def buildvars(args): 446 def buildvars(args):
447 """Describes the variables that can be set by the -D option to the 'mx build' commmand""" 447 """describe the variables that can be set by the -D option to the 'mx build' commmand"""
448 448
449 buildVars = { 449 buildVars = {
450 'ALT_BOOTDIR' : 'The location of the bootstrap JDK installation (default: ' + mx.java().jdk + ')', 450 'ALT_BOOTDIR' : 'The location of the bootstrap JDK installation (default: ' + mx.java().jdk + ')',
451 'ALT_OUTPUTDIR' : 'Build directory', 451 'ALT_OUTPUTDIR' : 'Build directory',
452 'HOTSPOT_BUILD_JOBS' : 'Number of CPUs used by make (default: ' + str(multiprocessing.cpu_count()) + ')', 452 'HOTSPOT_BUILD_JOBS' : 'Number of CPUs used by make (default: ' + str(multiprocessing.cpu_count()) + ')',
1061 mx.log(' ' + str(t.duration) + '\t' + t.title) 1061 mx.log(' ' + str(t.duration) + '\t' + t.title)
1062 mx.log(' =======') 1062 mx.log(' =======')
1063 mx.log(' ' + str(total.duration)) 1063 mx.log(' ' + str(total.duration))
1064 1064
1065 def deoptalot(args): 1065 def deoptalot(args):
1066 """Bootstrap a fastdebug Graal VM with DeoptimizeALot and VerifyOops on 1066 """bootstrap a fastdebug Graal VM with DeoptimizeALot and VerifyOops on
1067 1067
1068 If the first argument is a number, the process will be repeated 1068 If the first argument is a number, the process will be repeated
1069 this number of times. All other arguments are passed to the VM.""" 1069 this number of times. All other arguments are passed to the VM."""
1070 count = 1 1070 count = 1
1071 if len(args) > 0 and args[0].isdigit(): 1071 if len(args) > 0 and args[0].isdigit():