comparison mx/mx_graal.py @ 21671:8d0c2aabfc2d

missed Graal -> JVMCI renamings
author Doug Simon <doug.simon@oracle.com>
date Tue, 02 Jun 2015 19:11:34 +0200
parents 57912478d94d
children dd987b035a0b
comparison
equal deleted inserted replaced
21670:5731adc3a10a 21671:8d0c2aabfc2d
612 return (jvmciServices, optionsFiles) 612 return (jvmciServices, optionsFiles)
613 613
614 def _updateJVMCIFiles(jdkDir): 614 def _updateJVMCIFiles(jdkDir):
615 jreJVMCIDir = join(jdkDir, 'jre', 'lib', 'jvmci') 615 jreJVMCIDir = join(jdkDir, 'jre', 'lib', 'jvmci')
616 jvmciJars = [join(jreJVMCIDir, e) for e in os.listdir(jreJVMCIDir) if e.endswith('.jar')] 616 jvmciJars = [join(jreJVMCIDir, e) for e in os.listdir(jreJVMCIDir) if e.endswith('.jar')]
617 jreGraalServicesDir = join(jreJVMCIDir, 'services') 617 jreJVMCIServicesDir = join(jreJVMCIDir, 'services')
618 jreGraalOptionsDir = join(jreJVMCIDir, 'options') 618 jreJVMCIOptionsDir = join(jreJVMCIDir, 'options')
619 _extractJVMCIFiles(_getJdkDeployedJars(jdkDir), jvmciJars, jreGraalServicesDir, jreGraalOptionsDir) 619 _extractJVMCIFiles(_getJdkDeployedJars(jdkDir), jvmciJars, jreJVMCIServicesDir, jreJVMCIOptionsDir)
620 620
621 def _patchGraalVersionConstant(dist): 621 def _patchGraalVersionConstant(dist):
622 """ 622 """
623 Patches the constant "@@graal.version@@" in the constant pool of Graal.class 623 Patches the constant "@@graal.version@@" in the constant pool of Graal.class
624 with the computed Graal version string. 624 with the computed Graal version string.