comparison mx/mx_graal.py @ 14762:c6f4b780fa88

mx: increase minimum required jdk version
author Bernhard Urban <bernhard.urban@jku.at>
date Wed, 26 Mar 2014 14:32:50 +0100
parents 015f84f0b375
children ded08e344e4a
comparison
equal deleted inserted replaced
14761:7608c74e14b6 14762:c6f4b780fa88
77 """ Prefix for running the VM. """ 77 """ Prefix for running the VM. """
78 _vm_prefix = None 78 _vm_prefix = None
79 79
80 _make_eclipse_launch = False 80 _make_eclipse_launch = False
81 81
82 _minVersion = mx.VersionSpec('1.7.0_04') 82 # @CallerSensitive introduced in 7u25
83 _minVersion = mx.VersionSpec('1.7.0_25')
83 84
84 JDK_UNIX_PERMISSIONS = 0755 85 JDK_UNIX_PERMISSIONS = 0755
85 86
86 def isVMSupported(vm): 87 def isVMSupported(vm):
87 if 'client' in vm and len(platform.mac_ver()[0]) != 0: 88 if 'client' in vm and len(platform.mac_ver()[0]) != 0: