comparison mx.graal/mx_graal.py @ 22593:a107ab4c3011

make processing of <jre>/lib/jvmci/*.properties file like other Java *.properties files in that the last definition of any propery "wins"
author Doug Simon <doug.simon@oracle.com>
date Mon, 07 Sep 2015 22:26:45 +0200
parents c35e3fccb8da
children b3c4b69bc71f
comparison
equal deleted inserted replaced
22592:357e73d0091c 22593:a107ab4c3011
41 41
42 _suite = mx.suite('graal') 42 _suite = mx.suite('graal')
43 43
44 class GraalJDKDeployedDist(JvmciJDKDeployedDist): 44 class GraalJDKDeployedDist(JvmciJDKDeployedDist):
45 def __init__(self): 45 def __init__(self):
46 JvmciJDKDeployedDist.__init__(self, 'GRAAL_HOTSPOT', compilers=['graal', 'graal-economy']) 46 JvmciJDKDeployedDist.__init__(self, 'GRAAL_HOTSPOT', compilers=['graal-economy', 'graal'])
47 47
48 def deploy(self, jdkDir): 48 def deploy(self, jdkDir):
49 JvmciJDKDeployedDist.deploy(self, jdkDir) 49 JvmciJDKDeployedDist.deploy(self, jdkDir)
50 self._updateGraalPropertiesFile(join(jdkDir, 'jre', 'lib')) 50 self._updateGraalPropertiesFile(join(jdkDir, 'jre', 'lib'))
51 51