diff mx/sanitycheck.py @ 12647:b038b643a3a4

restricted BootstrapGraal option to GRAALVM builds only
author Doug Simon <doug.simon@oracle.com>
date Wed, 30 Oct 2013 21:49:04 +0100
parents 01512eb1ae7b
children 99769479f9ce
line wrap: on
line diff
--- a/mx/sanitycheck.py	Wed Oct 30 19:59:48 2013 +0100
+++ b/mx/sanitycheck.py	Wed Oct 30 21:49:04 2013 +0100
@@ -277,8 +277,8 @@
 
 
     args = ['-XX:+CompileTheWorld', '-Xbootclasspath/p:' + rtjar]
-    if commands.isGraalEnabled(vm):
-        args += ['-XX:+BootstrapGraal', '-G:-Debug']
+    if vm == 'graal':
+        args += ['-XX:+BootstrapGraal']
     if mode >= CTWMode.NoInline:
         if not commands.isGraalEnabled(vm):
             args.append('-XX:-Inline')