<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#ffffff">
    On 2012-04-20 06:51, Mahesh Pujari wrote:<br>
    <br>
    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.<br>
    <br>
    <blockquote
      cite="mid:1334897482.13605.YahooMailNeo@web112604.mail.gq1.yahoo.com"
      type="cite">
      <div style="color: rgb(0, 0, 0); background-color: rgb(255, 255,
        255); font-family: times new roman,new york,times,serif;
        font-size: 12pt;">
        <div>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</div>
      </div>
    </blockquote>
    <br>
    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.<br>
    <br>
    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... <br>
    <br>
    /Magnus<br>
  </body>
</html>