changeset 21940:3ecd0f489818

minimal version for Truffle is 1.7 and less checks when skipping the build of JDK
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Mon, 15 Jun 2015 17:03:28 +0200
parents e24237684856
children 0a00a5bd7c70
files mx/mx_graal.py
diffstat 1 files changed, 1 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/mx/mx_graal.py	Fri Jun 12 18:00:02 2015 +0200
+++ b/mx/mx_graal.py	Mon Jun 15 17:03:28 2015 +0200
@@ -84,7 +84,7 @@
 
 _make_eclipse_launch = False
 
-_minVersion = mx.VersionSpec('1.8')
+_minVersion = mx.VersionSpec('1.7')
 
 # max version (first _unsupported_ version)
 _untilVersion = None
@@ -878,9 +878,6 @@
         buildSuffix = ''
     elif vm.startswith('client'):
         buildSuffix = '1'
-    else:
-        assert vm == 'jvmci', vm
-        buildSuffix = 'jvmci'
 
     if _installed_jdks and _installed_jdks != _graal_home:
         if not mx.ask_yes_no("Warning: building while --installed-jdks is set (" + _installed_jdks + ") is not recommanded - are you sure you want to continue", 'n'):