# HG changeset patch # User Tom Rodriguez # Date 1421258018 28800 # Node ID fe4f875e435fe5a48cd2f499b54de1c18f8a92c7 # Parent c3bb622095f1a801192dd1a3c17108e2db75673b Add --lldb option like --gdb diff -r c3bb622095f1 -r fe4f875e435f mx/mx_graal.py --- a/mx/mx_graal.py Wed Jan 14 09:52:41 2015 -0800 +++ b/mx/mx_graal.py Wed Jan 14 09:53:38 2015 -0800 @@ -2392,6 +2392,7 @@ mx.add_argument('--ecl', action='store_true', dest='make_eclipse_launch', help='create launch configuration for running VM execution(s) in Eclipse') mx.add_argument('--vmprefix', action='store', dest='vm_prefix', help='prefix for running the VM (e.g. "/usr/bin/gdb --args")', metavar='') mx.add_argument('--gdb', action='store_const', const='/usr/bin/gdb --args', dest='vm_prefix', help='alias for --vmprefix "/usr/bin/gdb --args"') + mx.add_argument('--lldb', action='store_const', const='lldb --', dest='vm_prefix', help='alias for --vmprefix "lldb --"') commands.update({ 'export': [export, '[-options] [zipfile]'],