# HG changeset patch # User Jaroslav Tulach # Date 1434380608 -7200 # Node ID 3ecd0f489818a04ec84ef35fcd08fc389a4562a4 # Parent e24237684856c3b59ff1b3b68bb64fd2b19c1201 minimal version for Truffle is 1.7 and less checks when skipping the build of JDK diff -r e24237684856 -r 3ecd0f489818 mx/mx_graal.py --- 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'):