comparison mx/mx_graal.py @ 18108:cc1d1fc17338

gate: don't build server-nograal on windows (the build configuration doesn't exist yet)
author Bernhard Urban <bernhard.urban@jku.at>
date Thu, 16 Oct 2014 14:29:01 +0200
parents 2579d0ac7ad6
children 4ccabc85a62a
comparison
equal deleted inserted replaced
18107:2579d0ac7ad6 18108:cc1d1fc17338
1460 1460
1461 # Prevent Graal modifications from breaking the standard builds 1461 # Prevent Graal modifications from breaking the standard builds
1462 if args.buildNonGraal: 1462 if args.buildNonGraal:
1463 with Task('BuildHotSpotVarieties', tasks): 1463 with Task('BuildHotSpotVarieties', tasks):
1464 buildvms(['--vms', 'client,server', '--builds', 'fastdebug,product']) 1464 buildvms(['--vms', 'client,server', '--builds', 'fastdebug,product'])
1465 buildvms(['--vms', 'server-nograal', '--builds', 'product']) 1465 if mx.get_os() not in ['windows', 'cygwin']:
1466 buildvms(['--vms', 'server-nograal', '--builds', 'optimized']) 1466 buildvms(['--vms', 'server-nograal', '--builds', 'product,optimized'])
1467 1467
1468 for vmbuild in ['product', 'fastdebug']: 1468 for vmbuild in ['product', 'fastdebug']:
1469 for theVm in ['client', 'server']: 1469 for theVm in ['client', 'server']:
1470 if not isVMSupported(theVm): 1470 if not isVMSupported(theVm):
1471 mx.log('The' + theVm + ' VM is not supported on this platform') 1471 mx.log('The' + theVm + ' VM is not supported on this platform')