Skip to content

Commit

Permalink
[Truffle] Sulong now has two JARs.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisseaton committed Nov 17, 2016
1 parent d36ad78 commit 01f3c47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tool/jt.rb
Expand Up @@ -120,10 +120,10 @@ def self.find_graal_javacmd_and_options
javacmd = vm_args.shift
if Dir.exist?("#{graal_home}/mx.sulong")
sulong_dependencies = "#{graal_home}/lib/*"
sulong_jar = "#{graal_home}/build/sulong.jar"
sulong_jars = ["#{graal_home}/build/sulong.jar", "#{graal_home}/build/sulong_options.jar"]
nfi_classes = File.expand_path('../graal-core/mxbuild/graal/com.oracle.nfi/bin', graal_home)
vm_args << '-cp'
vm_args << [nfi_classes, sulong_dependencies, sulong_jar].join(':')
vm_args << [nfi_classes, sulong_dependencies, *sulong_jars].join(':')
vm_args << '-XX:-UseJVMCIClassLoader'
end
options = []
Expand Down

0 comments on commit 01f3c47

Please sign in to comment.