File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -160,8 +160,8 @@ def find_graal_javacmd_and_options
160
160
elsif graal_home = find_auto_graal_home
161
161
javacmd = "#{ find_graal_java_home ( graal_home ) } /bin/java"
162
162
graal_jars = [
163
- "#{ graal_home } /mxbuild/dists/graal.jar" ,
164
- "#{ graal_home } /mxbuild/dists/graal-management.jar"
163
+ "#{ graal_home } /mxbuild/dists/jdk1.8/ graal.jar" ,
164
+ "#{ graal_home } /mxbuild/dists/jdk1.8/ graal-management.jar"
165
165
]
166
166
vm_args = [
167
167
'-XX:+UnlockExperimentalVMOptions' ,
@@ -179,7 +179,7 @@ def find_graal_javacmd_and_options
179
179
def find_auto_graal_home
180
180
sibling_compiler = File . expand_path ( '../graal/compiler' , TRUFFLERUBY_DIR )
181
181
return nil unless Dir . exist? ( sibling_compiler )
182
- return nil unless File . exist? ( "#{ sibling_compiler } /mxbuild/dists/graal-compiler.jar" )
182
+ return nil unless File . exist? ( "#{ sibling_compiler } /mxbuild/dists/jdk1.8/ graal-compiler.jar" )
183
183
sibling_compiler
184
184
end
185
185
You can’t perform that action at this time.
0 commit comments