comparison mx/commands.py @ 9120:9f361c0f912b

added note about mx/env to the output of 'mx buildvars'
author Doug Simon <doug.simon@oracle.com>
date Mon, 15 Apr 2013 14:47:15 +0200
parents 0c9c4ae236b2
children 5c63e4385115 703228415b74
comparison
equal deleted inserted replaced
9119:0c9c4ae236b2 9120:9f361c0f912b
548 mx.log('HotSpot build variables that can be set by the -D option to "mx build":') 548 mx.log('HotSpot build variables that can be set by the -D option to "mx build":')
549 mx.log('') 549 mx.log('')
550 for n in sorted(buildVars.iterkeys()): 550 for n in sorted(buildVars.iterkeys()):
551 mx.log(n) 551 mx.log(n)
552 mx.log(textwrap.fill(buildVars[n], initial_indent=' ', subsequent_indent=' ', width=200)) 552 mx.log(textwrap.fill(buildVars[n], initial_indent=' ', subsequent_indent=' ', width=200))
553
554 mx.log('')
555 mx.log('Note that these variables can be given persistent values in the file ' + join(_graal_home, 'mx', 'env') + ' (see \'mx about\').')
553 556
554 def build(args, vm=None): 557 def build(args, vm=None):
555 """build the VM binary 558 """build the VM binary
556 559
557 The global '--vm' option selects which VM to build. This command also 560 The global '--vm' option selects which VM to build. This command also