changeset 4407:3b776fb6ffd9

Removed code for updating graal_path.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 29 Jan 2012 02:13:31 +0100
parents 961895157a38
children 9f8e4aeec1a9 f3cc08cb211d
files mx/commands.py
diffstat 1 files changed, 0 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- 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')