# HG changeset patch # User Thomas Wuerthinger # Date 1327799611 -3600 # Node ID 3b776fb6ffd945b47638e20293e78b06cede2630 # Parent 961895157a38d02fff5991f27fc35cfd26c93765 Removed code for updating graal_path. diff -r 961895157a38 -r 3b776fb6ffd9 mx/commands.py --- a/mx/commands.py Sun Jan 29 01:56:43 2012 +0100 +++ b/mx/commands.py Sun Jan 29 02:13:31 2012 +0100 @@ -330,16 +330,6 @@ if not 'Xusage.txt' in line: sys.stderr.write(line + os.linesep) - # Update graal_paths.hpp - out = StringIO.StringIO() - out.write(_copyrightTemplate.format(time.strftime('%Y'))) - for p in mx.project('com.oracle.max.graal.hotspot').all_deps([], False): - out.write(' prepend_to_graal_classpath(scp_compiler, graal_dir, "' + p.name + '");\n') - graalPaths = join(_graal_home, 'src', 'share', 'vm', 'graal', 'graal_paths.hpp') - assert exists(graalPaths), 'File does not exist: ' + graalPaths - mx.update_file(graalPaths, out.getvalue()) - out.close() - if platform.system() == 'Windows': compilelogfile = _graal_home + '/graalCompile.log' mksHome = mx.get_env('MKS_HOME', 'C:\\cygwin\\bin')