changeset 22667:9692347207a7

Disable gccs schedule-insns optimization on Linux/SPARC which causes memory problems
author Stefan Anzinger <stefan.anzinger@oracle.com>
date Wed, 07 Oct 2015 12:49:00 -0700
parents a241f629dbfb
children da5bdbf4a008
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	Wed Oct 07 18:26:27 2015 +0200
+++ b/mx.jvmci/mx_jvmci.py	Wed Oct 07 12:49:00 2015 -0700
@@ -924,7 +924,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", 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-schedule-insns2", env=env)
 
             setMakeVar('MAKE_VERBOSE', 'y' if mx._opts.verbose else '')
             if self.vm.endswith('nojvmci'):