# HG changeset patch # User Bernhard Urban # Date 1400837101 -7200 # Node ID 283c8d31c5604b1353982958ee6dd90ac48f9e9f # Parent dba1a510fe92d6975da19f5780adaf0a60a4d4c6 mx: update vm choice helptext diff -r dba1a510fe92 -r 283c8d31c560 mx/mx_graal.py --- a/mx/mx_graal.py Fri May 23 13:10:14 2014 +0200 +++ b/mx/mx_graal.py Fri May 23 11:25:01 2014 +0200 @@ -46,8 +46,8 @@ """ The VMs that can be built and run along with an optional description. Only VMs with a description are listed in the dialogue for setting the default VM (see _get_vm()). """ _vmChoices = { - 'graal' : 'All compilation is performed with Graal. This includes bootstrapping Graal itself unless -XX:-BootstrapGraal is used.', - 'server' : 'Normal compilation is performed with the tiered system (i.e., client + server), Truffle compilation is performed with Graal. Use this for optimal Truffle performance.', + 'graal' : 'Normal compilation is performed with a tiered system (C1 + Graal), Truffle compilation is performed with Graal.', + 'server' : 'Normal compilation is performed with a tiered system (C1 + C2), Truffle compilation is performed with Graal. Use this for optimal Truffle performance.', 'client' : None, # normal compilation with client compiler, explicit compilation (e.g., by Truffle) with Graal 'server-nograal' : None, # all compilation with tiered system (i.e., client + server), Graal omitted 'client-nograal' : None, # all compilation with client compiler, Graal omitted