changeset 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 357e73d0091c
children d7f7a7c29670
files mx.graal/mx_graal.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mx.graal/mx_graal.py	Mon Sep 07 22:26:14 2015 +0200
+++ b/mx.graal/mx_graal.py	Mon Sep 07 22:26:45 2015 +0200
@@ -43,7 +43,7 @@
 
 class GraalJDKDeployedDist(JvmciJDKDeployedDist):
     def __init__(self):
-        JvmciJDKDeployedDist.__init__(self, 'GRAAL_HOTSPOT', compilers=['graal', 'graal-economy'])
+        JvmciJDKDeployedDist.__init__(self, 'GRAAL_HOTSPOT', compilers=['graal-economy', 'graal'])
 
     def deploy(self, jdkDir):
         JvmciJDKDeployedDist.deploy(self, jdkDir)