comparison mx/mx_graal.py @ 13761:7c418666c6c9

Refactoring and cleanup of Simple Language (more to come soon)
author Christian Wimmer <christian.wimmer@oracle.com>
date Fri, 24 Jan 2014 18:16:24 -0800
parents b688e7da4c69
children 1e72cd05b77e
comparison
equal deleted inserted replaced
13760:a12017c18d5d 13761:7c418666c6c9
1356 mx.run_java(['-jar', jacocoreport.get_path(True), '-in', 'jacoco.exec', '-g', join(_graal_home, 'graal'), out]) 1356 mx.run_java(['-jar', jacocoreport.get_path(True), '-in', 'jacoco.exec', '-g', join(_graal_home, 'graal'), out])
1357 1357
1358 def sl(args): 1358 def sl(args):
1359 """run an SL program""" 1359 """run an SL program"""
1360 vmArgs, slArgs = _extract_VM_args(args) 1360 vmArgs, slArgs = _extract_VM_args(args)
1361 vm(vmArgs + ['-cp', mx.classpath("com.oracle.truffle.sl"), "com.oracle.truffle.sl.SimpleLanguage"] + slArgs) 1361 vm(vmArgs + ['-cp', mx.classpath("com.oracle.truffle.sl"), "com.oracle.truffle.sl.SLMain"] + slArgs)
1362 1362
1363 def trufflejar(args=None): 1363 def trufflejar(args=None):
1364 """make truffle.jar""" 1364 """make truffle.jar"""
1365 1365
1366 # Test with the built classes 1366 # Test with the built classes