changeset 23298:657ccda6d281

Disable gcc tree-ccp on SPARC/Linux wich makes problems with G1GC
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Wed, 03 Feb 2016 19:03:02 +0100
parents 4b58c92e939b
children 805d58f2cd8c
files mx.jvmci/mx_jvmci.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mx.jvmci/mx_jvmci.py	Tue Feb 02 16:19:37 2016 +0100
+++ b/mx.jvmci/mx_jvmci.py	Wed Feb 03 19:03:02 2016 +0100
@@ -938,7 +938,7 @@
             if mx.get_os() == 'linux' and platform.processor() == 'sparc64':
                 # SPARC/Linux
                 setMakeVar("DEBUG_BINARIES", "true", env=env)
-                setMakeVar("EXTRA_CFLAGS", "-Wno-conversion-null -Wno-int-to-pointer-cast -Wno-unused-function -fno-tree-loop-distribute-patterns -fno-schedule-insns", env=env)
+                setMakeVar("EXTRA_CFLAGS", "-Wno-conversion-null -Wno-int-to-pointer-cast -Wno-unused-function -fno-tree-loop-distribute-patterns -fno-schedule-insns -fno-tree-ccp", env=env)
 
             setMakeVar('MAKE_VERBOSE', 'y' if mx._opts.verbose else '')
             if self.vm.endswith('nojvmci'):