On 2012-04-20 06:51, Mahesh Pujari wrote:

You are using ccache. It might be the case that a previous compilation failed (due to out of disk space at that time?) and that ccache stored away a bad result. That shouldn't really happen, but, well... You can try to clear the ccache cache. Or you can try to run without ccache completely, by running configure with --disable-ccache.

CCACHE_COMPRESS=1  CCACHE_SLOPPINESS=time_macros /usr/bin/ccache /usr/lib/ccache/g++ -DLINUX -D_GNU_SOURCE -DIA32 -DASSERT -DFASTDEBUG -I. -I/disk1/development/jdk/jdk8/jdk8/hotspot/src/share/vm/prims -I/disk1/development/jdk/jdk8/jdk8/hotspot/src/share/vm -I/disk1/development/jdk/jdk8/jdk8/hotspot/src/share/vm/precompiled -I/disk1/development/jdk/jdk8/jdk8/hotspot/src/cpu/x86/vm -I/disk1/development/jdk/jdk8/jdk8/hotspot/src/os_cpu/linux_x86/vm -I/disk1/development/jdk/jdk8/jdk8/hotspot/src/os/linux/vm -I/disk1/development/jdk/jdk8/jdk8/hotspot/src/os/posix/vm -I../generated -DHOTSPOT_RELEASE_VERSION="\"24.0-b07\"" -DHOTSPOT_BUILD_TARGET="\"fastdebug\"" -DHOTSPOT_BUILD_USER="\"mpujari\"" -DHOTSPOT_LIB_ARCH=\"i386\" -DHOTSPOT_VM_DISTRO="\"OpenJDK\"" -DTARGET_OS_FAMILY_linux -DTARGET_ARCH_x86 -DTARGET_ARCH_MODEL_x86_32 -DTARGET_OS_ARCH_linux_x86 -DTARGET_OS_ARCH_MODEL_linux_x86_32 -DTARGET_COMPILER_gcc -DCOMPILER2 -DCOMPILER1 -fPIC -fno-rtti -fno-exceptions -D_REENTRANT -fcheck-new -fvisibility=hidden -m32 -march=i586 -pipe -O3 -fno-strict-aliasing  -gstabs -DVM_LITTLE_ENDIAN -DINCLUDE_TRACE -Werror -Wpointer-arith -Wsign-compare    -c -MMD -MP -MF ../generated/dependencies/graphKit.o.d -o graphKit.o /disk1/development/jdk/jdk8/jdk8/hotspot/src/share/vm/opto/graphKit.cpp

What happens if you run this command line directly at the shell? You can change -o graphKit.o to -o /tmp/graphKit.o, and then check at /tmp/graphKit.o.

You can also try it witout ccache byt deleting the two CCACHE variable assignments, that is, start the command line with s /usr/bin/ccache /usr/lib/ccache/g++ -DLINUX...

/Magnus

Reply via email to