# HG changeset patch # User Michael Van De Vanter # Date 1432769763 25200 # Node ID 189d7a64b4d917234eec57984becf77dd1fae9aa # Parent fc376e0b80baa909c6f967fb05f92425729135d8 Truffle/Debugging: fix a python problem with the "sldebug" command diff -r fc376e0b80ba -r 189d7a64b4d9 mx/mx_graal.py --- a/mx/mx_graal.py Tue May 26 17:38:44 2015 -0700 +++ b/mx/mx_graal.py Wed May 27 16:36:03 2015 -0700 @@ -2413,7 +2413,7 @@ def sldebug(args): """run a simple command line debugger for the Simple Language""" vmArgs, slArgs = _extract_VM_args(args, useDoubleDash=True) - vm(vmArgs + ['-cp', mx.classpath("com.oracle.truffle.sl.tools.debug"), "com.oracle.truffle.sl.tools.debug.SLREPLServer"] + slArgs) + vm(vmArgs + ['-cp', mx.classpath("com.oracle.truffle.sl.tools"), "com.oracle.truffle.sl.tools.debug.SLREPLServer"] + slArgs) def isGraalEnabled(vm): return vm != 'original' and not vm.endswith('nograal')