comparison mx/mx_graal.py @ 15940:d676c4beeab8

renamed project (and package) com.oracle.graal.hotspot.codegen to com.oracle.graal.hotspot.sourcegen
author Doug Simon <doug.simon@oracle.com>
date Tue, 27 May 2014 22:00:22 +0200
parents 7c84f0ce7cae
children c60362c5150f 151fe6b1e511
comparison
equal deleted inserted replaced
15939:efc5afa0f5b3 15940:d676c4beeab8
483 toDelete = join(jreLibDir, 'graal.options') 483 toDelete = join(jreLibDir, 'graal.options')
484 if exists(toDelete): 484 if exists(toDelete):
485 os.unlink(toDelete) 485 os.unlink(toDelete)
486 486
487 def _update_graalRuntime_inline_hpp(graalJar): 487 def _update_graalRuntime_inline_hpp(graalJar):
488 p = mx.project('com.oracle.graal.hotspot.codegen') 488 p = mx.project('com.oracle.graal.hotspot.sourcegen')
489 mainClass = 'com.oracle.graal.hotspot.codegen.GenGraalRuntimeInlineHpp' 489 mainClass = 'com.oracle.graal.hotspot.sourcegen.GenGraalRuntimeInlineHpp'
490 if exists(join(p.output_dir(), mainClass.replace('.', os.sep) + '.class')): 490 if exists(join(p.output_dir(), mainClass.replace('.', os.sep) + '.class')):
491 hsSrcGenDir = join(mx.project('com.oracle.graal.hotspot').source_gen_dir(), 'hotspot') 491 hsSrcGenDir = join(mx.project('com.oracle.graal.hotspot').source_gen_dir(), 'hotspot')
492 if not exists(hsSrcGenDir): 492 if not exists(hsSrcGenDir):
493 os.makedirs(hsSrcGenDir) 493 os.makedirs(hsSrcGenDir)
494 494