# HG changeset patch # User Stefan Anzinger # Date 1429203645 -7200 # Node ID 5e78d067ebbe6a6b4df9616110767fe8539ed4f7 # Parent 68ff637e95b1059f52c0c7c9c721ea8a6a4bf120 Do not build IGV in gate when running on SPARC diff -r 68ff637e95b1 -r 5e78d067ebbe mx/mx_graal.py --- a/mx/mx_graal.py Thu Apr 16 17:09:06 2015 +0200 +++ b/mx/mx_graal.py Thu Apr 16 19:00:45 2015 +0200 @@ -1574,7 +1574,7 @@ _jacoco = 'off' with Task('CleanAndBuildIdealGraphVisualizer', tasks) as t: - if t: + if t and platform.processor() != 'sparc': env = _igvFallbackJDK(os.environ) buildxml = mx._cygpathU2W(join(_graal_home, 'src', 'share', 'tools', 'IdealGraphVisualizer', 'build.xml')) mx.run(['ant', '-f', buildxml, '-q', 'clean', 'build'], env=env)