comparison mx/mx_graal.py @ 20996:5e78d067ebbe

Do not build IGV in gate when running on SPARC
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Thu, 16 Apr 2015 19:00:45 +0200
parents 68ff637e95b1
children e1c063565b3c
comparison
equal deleted inserted replaced
20994:68ff637e95b1 20996:5e78d067ebbe
1572 1572
1573 global _jacoco 1573 global _jacoco
1574 _jacoco = 'off' 1574 _jacoco = 'off'
1575 1575
1576 with Task('CleanAndBuildIdealGraphVisualizer', tasks) as t: 1576 with Task('CleanAndBuildIdealGraphVisualizer', tasks) as t:
1577 if t: 1577 if t and platform.processor() != 'sparc':
1578 env = _igvFallbackJDK(os.environ) 1578 env = _igvFallbackJDK(os.environ)
1579 buildxml = mx._cygpathU2W(join(_graal_home, 'src', 'share', 'tools', 'IdealGraphVisualizer', 'build.xml')) 1579 buildxml = mx._cygpathU2W(join(_graal_home, 'src', 'share', 'tools', 'IdealGraphVisualizer', 'build.xml'))
1580 mx.run(['ant', '-f', buildxml, '-q', 'clean', 'build'], env=env) 1580 mx.run(['ant', '-f', buildxml, '-q', 'clean', 'build'], env=env)
1581 1581
1582 # Prevent Graal modifications from breaking the standard builds 1582 # Prevent Graal modifications from breaking the standard builds