changeset 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 370dbf93f0ca
files mx/mx_graal.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)