comparison mx.graal/mx_graal.py @ 22420:13ea85f171d3

Updating to latest version of Truffle API
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Thu, 06 Aug 2015 18:57:34 +0200
parents 0d437f833141
children 0a082a17d2a7
comparison
equal deleted inserted replaced
22407:92ead19b1c4a 22420:13ea85f171d3
84 def _unittest_config_participant(config): 84 def _unittest_config_participant(config):
85 vmArgs, mainClass, mainClassArgs = config 85 vmArgs, mainClass, mainClassArgs = config
86 # Unconditionally prepend truffle.jar to the boot class path. 86 # Unconditionally prepend truffle.jar to the boot class path.
87 # This used to be done by the VM itself but was removed to 87 # This used to be done by the VM itself but was removed to
88 # separate the VM from Truffle. 88 # separate the VM from Truffle.
89 truffle_jar = mx.distribution('truffle:TRUFFLE').path 89 truffle_jar = mx.distribution('truffle:TRUFFLE_API').path
90 vmArgs = ['-Xbootclasspath/p:' + truffle_jar] + vmArgs 90 vmArgs = ['-Xbootclasspath/p:' + truffle_jar] + vmArgs
91 return (vmArgs, mainClass, mainClassArgs) 91 return (vmArgs, mainClass, mainClassArgs)
92 92
93 mx_unittest.add_config_participant(_unittest_config_participant) 93 mx_unittest.add_config_participant(_unittest_config_participant)
94 94