changeset 8317:3d515bfc1677

Fixed build-graal.xml generation was out of sync with build-graal.xml.
author Christian Humer <christian.humer@gmail.com>
date Sat, 16 Mar 2013 18:22:39 +0100
parents c210577168e7
children c807652d871c
files mx/commands.py
diffstat 1 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mx/commands.py	Sat Mar 16 16:11:40 2013 +0100
+++ b/mx/commands.py	Sat Mar 16 18:22:39 2013 +0100
@@ -485,6 +485,13 @@
     for p in mx.sorted_deps(mx.distribution('GRAAL').deps):
         out.element('src', {'path' : '${src.dir}/' + p.name})
     out.element('compilerarg', {'value' : '-XDignore.symbol.file'})
+    
+    out.open('classpath')
+    out.open('fileset', {'dir' : '${java.home}/../lib'})
+    out.element('include', {'name' : 'tools.jar'})
+    out.close('fileset')
+    out.close('classpath')
+    
     out.close('javac')
     out.close('target')