Bootstrap error

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hello all,

I'm getting bootstrap errors while trying to install GCC and could use some help. I'm trying to compile my own copy of GCC from source, in my home directory on a shared system (cluster). The cluster has GCC 4.4.3 that I'm using to bootstrap the compilation. I wrote this little script to show what I'm doing and to help in debugging:

# Installation parameters
gccver=4.8.0
gmpver=5.1.1
mpcver=1.0.1
mpfrver=3.1.2
prefix=$HOME/local
langs=c,c++

# Download source
wget ftp://gnu.mirror.iweb.com/gnu/gcc/gcc-${gccver}/gcc-${gccver}.tar.gz
wget ftp://ftp.gnu.org/gnu/gmp/gmp-${gmpver}.tar.bz2
wget ftp://ftp.gnu.org/gnu/mpc/mpc-${mpcver}.tar.gz
wget ftp://ftp.gnu.org/gnu/mpfr/mpfr-${mpfrver}.tar.gz

# Unpack source
tar -xzvf gcc-${gccver}.tar.gz
tar -xjvf gmp-${gmpver}.tar.bz2
tar -xzvf mpc-${mpcver}.tar.gz
tar -xzvf mpfr-${mpfrver}.tar.gz

# Move dependency source directories into gcc source directory
mv gmp-${gmpver} gcc-${gccver}/gmp
mv mpc-${mpcver} gcc-${gccver}/mpc
mv mpfr-${mpfrver} gcc-${gccver}/mpfr

# create a build directory and change to it
mkdir objdir
pushd objdir

# configure, make, check, and install gcc:
../gcc-${gccver}/configure --prefix=${prefix} --enable-languages=${langs}
make -j 16
make install

# return to the original directory
popd

The above fails during 'make' with the error: "Bootstrap comparison failure!" I've attached the last few pages of output as error.txt. If anyone has any suggestions then I'd be really happy to hear them. Also, let me know what other information I can provide that would be relevant.

Thanks a lot,

Doug

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by configure, which was
generated by GNU Autoconf 2.64.  Invocation command line was

  $ ../gcc-4.8.0/configure --prefix=/home/dstaple/local --enable-languages=c,c++

## --------- ##
## Platform. ##
## --------- ##

hostname = cl183
uname -m = x86_64
uname -r = 2.6.9-101.ELlargesmp
uname -s = Linux
uname -v = #1 SMP Fri May 27 19:07:07 EDT 2011

/usr/bin/uname -p = unknown
/bin/uname -X     = unknown

/bin/arch              = x86_64
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /tmp/1395249.1.short.q
PATH: /home/dstaple/bin
PATH: /usr/local/intel/composerxe-2011.0.084/bin/intel64
PATH: /usr/local/gnu/bin
PATH: /usr/local/toolworks/totalview.8.11.0-0/bin
PATH: /usr/local/openmpi.pgi-1.2.9/bin
PATH: /opt/pgi/linux86-64/8.0-6/bin
PATH: /opt/sge/bin/lx24-amd64
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
PATH: /usr/X11R6/bin


## ----------- ##
## Core tests. ##
## ----------- ##

configure:2317: checking build system type
configure:2331: result: x86_64-unknown-linux-gnu
configure:2378: checking host system type
configure:2391: result: x86_64-unknown-linux-gnu
configure:2411: checking target system type
configure:2424: result: x86_64-unknown-linux-gnu
configure:2478: checking for a BSD-compatible install
configure:2546: result: /usr/bin/install -c
configure:2557: checking whether ln works
configure:2579: result: yes
configure:2583: checking whether ln -s works
configure:2587: result: yes
configure:2594: checking for a sed that does not truncate output
configure:2658: result: /bin/sed
configure:2667: checking for gawk
configure:2683: found /usr/bin/gawk
configure:2694: result: gawk
configure:3164: checking for libatomic support
configure:3174: result: yes
configure:3183: checking for libitm support
configure:3193: result: yes
configure:3202: checking for libsanitizer support
configure:3212: result: yes
configure:3936: checking for gcc
configure:3952: found /usr/local/gnu/bin/gcc
configure:3963: result: gcc
configure:4192: checking for C compiler version
configure:4201: gcc --version >&5
gcc (GCC) 4.4.3
Copyright (C) 2010 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:4212: $? = 0
configure:4201: gcc -v >&5
Using built-in specs.
Target: x86_64-unknown-linux-gnu
Configured with: ../gcc-4.4.3/configure --prefix=/usr/local/gnu --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,java,f95 --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-mpfr=/usr/local/mpfr --with-mpfr-include=/usr/local/mpfr/include --with-mpfr-lib=/usr/local/mpfr/lib --enable-bootstrap=no --disable-checking CC=gcc4 CXX=g++4 LD_LIBRARY_PATH=/usr/local/mpfr/lib:/usr/local/python/lib:/usr/local/toolworks/totalview/linux-x86-64/lib:/usr/local/openmpi/lib:/opt/mx/lib:/usr/local/mpfr/lib LDFLAGS='-L/usr/X11R6/lib64/ -L/usr/local/mpfr/lib -Wl,-rpath,/usr/local/mpfr/lib/' : (reconfigured) ../gcc-4.4.3/configure --prefix=/usr/local/gnu --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,f95 --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-mpfr=/usr/local/mpfr --with-mpfr-include=/usr/local/mpfr/include --with-mpfr-lib=/usr/local/mpfr/lib --enable-bootstrap=no --disable-checking CC=gcc4 CXX=g++4 LD_LIBRARY_PATH=/usr/local/mpfr/lib:/usr/local/python/lib:/usr/local/toolworks/totalview/linux-x86-64/lib:/usr/local/openmpi/lib:/opt/mx/lib:/usr/local/mpfr/lib LDFLAGS='-L/usr/X11R6/lib64/ -L/usr/local/mpfr/lib -Wl,-rpath,/usr/local/mpfr/lib/'
Thread model: posix
gcc version 4.4.3 (GCC) 
configure:4212: $? = 0
configure:4201: gcc -V >&5
gcc: '-V' option must have argument
configure:4212: $? = 1
configure:4201: gcc -qversion >&5
gcc: unrecognized option '-qversion'
gcc: no input files
configure:4212: $? = 1
configure:4232: checking for C compiler default output file name
configure:4254: gcc    conftest.c  >&5
configure:4258: $? = 0
configure:4295: result: a.out
configure:4311: checking whether the C compiler works
configure:4320: ./a.out
configure:4324: $? = 0
configure:4339: result: yes
configure:4346: checking whether we are cross compiling
configure:4348: result: no
configure:4351: checking for suffix of executables
configure:4358: gcc -o conftest    conftest.c  >&5
configure:4362: $? = 0
configure:4384: result: 
configure:4390: checking for suffix of object files
configure:4412: gcc -c   conftest.c >&5
configure:4416: $? = 0
configure:4437: result: o
configure:4441: checking whether we are using the GNU C compiler
configure:4460: gcc -c   conftest.c >&5
configure:4460: $? = 0
configure:4469: result: yes
configure:4478: checking whether gcc accepts -g
configure:4498: gcc -c -g  conftest.c >&5
configure:4498: $? = 0
configure:4539: result: yes
configure:4556: checking for gcc option to accept ISO C89
configure:4620: gcc  -c -g -O2  conftest.c >&5
configure:4620: $? = 0
configure:4633: result: none needed
configure:4711: checking for g++
configure:4727: found /usr/local/gnu/bin/g++
configure:4738: result: g++
configure:4765: checking for C++ compiler version
configure:4774: g++ --version >&5
g++ (GCC) 4.4.3
Copyright (C) 2010 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:4785: $? = 0
configure:4774: g++ -v >&5
Using built-in specs.
Target: x86_64-unknown-linux-gnu
Configured with: ../gcc-4.4.3/configure --prefix=/usr/local/gnu --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,java,f95 --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-mpfr=/usr/local/mpfr --with-mpfr-include=/usr/local/mpfr/include --with-mpfr-lib=/usr/local/mpfr/lib --enable-bootstrap=no --disable-checking CC=gcc4 CXX=g++4 LD_LIBRARY_PATH=/usr/local/mpfr/lib:/usr/local/python/lib:/usr/local/toolworks/totalview/linux-x86-64/lib:/usr/local/openmpi/lib:/opt/mx/lib:/usr/local/mpfr/lib LDFLAGS='-L/usr/X11R6/lib64/ -L/usr/local/mpfr/lib -Wl,-rpath,/usr/local/mpfr/lib/' : (reconfigured) ../gcc-4.4.3/configure --prefix=/usr/local/gnu --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,f95 --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-mpfr=/usr/local/mpfr --with-mpfr-include=/usr/local/mpfr/include --with-mpfr-lib=/usr/local/mpfr/lib --enable-bootstrap=no --disable-checking CC=gcc4 CXX=g++4 LD_LIBRARY_PATH=/usr/local/mpfr/lib:/usr/local/python/lib:/usr/local/toolworks/totalview/linux-x86-64/lib:/usr/local/openmpi/lib:/opt/mx/lib:/usr/local/mpfr/lib LDFLAGS='-L/usr/X11R6/lib64/ -L/usr/local/mpfr/lib -Wl,-rpath,/usr/local/mpfr/lib/'
Thread model: posix
gcc version 4.4.3 (GCC) 
configure:4785: $? = 0
configure:4774: g++ -V >&5
g++: '-V' option must have argument
configure:4785: $? = 1
configure:4774: g++ -qversion >&5
g++: unrecognized option '-qversion'
g++: no input files
configure:4785: $? = 1
configure:4789: checking whether we are using the GNU C++ compiler
configure:4808: g++ -c   conftest.cpp >&5
configure:4808: $? = 0
configure:4817: result: yes
configure:4826: checking whether g++ accepts -g
configure:4846: g++ -c -g  conftest.cpp >&5
configure:4846: $? = 0
configure:4887: result: yes
configure:4936: checking whether g++ accepts -static-libstdc++ -static-libgcc
configure:4953: g++ -o conftest -g -O2   -static-libstdc++ -static-libgcc conftest.cpp  >&5
g++: unrecognized option '-static-libstdc++'
conftest.cpp:11:2: error: #error -static-libstdc++ not implemented
configure:4953: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| /* end confdefs.h.  */
| 
| #if (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 5)
| #error -static-libstdc++ not implemented
| #endif
| int main() {}
configure:4957: result: no
configure:5018: checking for gnatbind
configure:5034: found /usr/bin/gnatbind
configure:5045: result: gnatbind
configure:5110: checking for gnatmake
configure:5126: found /usr/bin/gnatmake
configure:5137: result: gnatmake
configure:5159: checking whether compiler driver understands Ada
configure:5182: result: no
configure:5191: checking how to compare bootstrapped objects
configure:5216: result: cmp --ignore-initial=16 $$f1 $$f2
configure:5270: checking for objdir
configure:5285: result: .libs
configure:5857: checking for version 0.10 of ISL
configure:5876: gcc -o conftest -g -O2  -I$$r/$(HOST_SUBDIR)/gmp -I$$s/gmp -I$$r/$(HOST_SUBDIR)/mpfr/src -I$$s/mpfr/src -I$$s/mpc/src     conftest.c  -lisl >&5
conftest.c:10:25: error: isl/version.h: No such file or directory
conftest.c: In function 'main':
conftest.c:15: warning: passing argument 1 of 'strlen' makes pointer from integer without a cast
/usr/include/string.h:242: note: expected 'const char *' but argument is of type 'int'
conftest.c:15: warning: passing argument 1 of 'strlen' makes pointer from integer without a cast
/usr/include/string.h:242: note: expected 'const char *' but argument is of type 'int'
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: passing argument 1 of '__builtin_strcmp' makes pointer from integer without a cast
conftest.c:15: note: expected 'const char *' but argument is of type 'int'
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: passing argument 1 of 'strlen' makes pointer from integer without a cast
/usr/include/string.h:242: note: expected 'const char *' but argument is of type 'int'
conftest.c:15: warning: passing argument 1 of '__builtin_strcmp' makes pointer from integer without a cast
conftest.c:15: note: expected 'const char *' but argument is of type 'int'
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: passing argument 1 of '__builtin_strcmp' makes pointer from integer without a cast
conftest.c:15: note: expected 'const char *' but argument is of type 'int'
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: passing argument 1 of '__builtin_strcmp' makes pointer from integer without a cast
conftest.c:15: note: expected 'const char *' but argument is of type 'int'
conftest.c:15: warning: passing argument 1 of 'strncmp' makes pointer from integer without a cast
/usr/include/string.h:102: note: expected 'const char *' but argument is of type 'int'
configure:5876: $? = 1
configure: program exited with status 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| #include <isl/version.h>
|    #include <string.h>
| int
| main ()
| {
| if (strncmp (isl_version (), "isl-0.10", strlen ("isl-0.10")) != 0)
|      return 1;
| 
|   ;
|   return 0;
| }
configure:5885: result: no
configure:5905: checking for version 0.11 of ISL
configure:5924: gcc -o conftest -g -O2  -I$$r/$(HOST_SUBDIR)/gmp -I$$s/gmp -I$$r/$(HOST_SUBDIR)/mpfr/src -I$$s/mpfr/src -I$$s/mpc/src     conftest.c  -lisl >&5
conftest.c:10:25: error: isl/version.h: No such file or directory
conftest.c: In function 'main':
conftest.c:15: warning: passing argument 1 of 'strlen' makes pointer from integer without a cast
/usr/include/string.h:242: note: expected 'const char *' but argument is of type 'int'
conftest.c:15: warning: passing argument 1 of 'strlen' makes pointer from integer without a cast
/usr/include/string.h:242: note: expected 'const char *' but argument is of type 'int'
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: passing argument 1 of '__builtin_strcmp' makes pointer from integer without a cast
conftest.c:15: note: expected 'const char *' but argument is of type 'int'
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: passing argument 1 of 'strlen' makes pointer from integer without a cast
/usr/include/string.h:242: note: expected 'const char *' but argument is of type 'int'
conftest.c:15: warning: passing argument 1 of '__builtin_strcmp' makes pointer from integer without a cast
conftest.c:15: note: expected 'const char *' but argument is of type 'int'
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: passing argument 1 of '__builtin_strcmp' makes pointer from integer without a cast
conftest.c:15: note: expected 'const char *' but argument is of type 'int'
conftest.c:15: warning: cast to pointer from integer of different size
conftest.c:15: warning: passing argument 1 of '__builtin_strcmp' makes pointer from integer without a cast
conftest.c:15: note: expected 'const char *' but argument is of type 'int'
conftest.c:15: warning: passing argument 1 of 'strncmp' makes pointer from integer without a cast
/usr/include/string.h:102: note: expected 'const char *' but argument is of type 'int'
configure:5924: $? = 1
configure: program exited with status 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| #include <isl/version.h>
|    #include <string.h>
| int
| main ()
| {
| if (strncmp (isl_version (), "isl-0.11", strlen ("isl-0.11")) != 0)
|      return 1;
| 
|   ;
|   return 0;
| }
configure:5933: result: no
configure:7090: checking for default BUILD_CONFIG
configure:7122: result: bootstrap-debug
configure:7611: checking for bison
configure:7627: found /usr/bin/bison
configure:7638: result: bison -y
configure:7658: checking for bison
configure:7674: found /usr/bin/bison
configure:7685: result: bison
configure:7705: checking for gm4
configure:7735: result: no
configure:7705: checking for gnum4
configure:7735: result: no
configure:7705: checking for m4
configure:7721: found /usr/bin/m4
configure:7732: result: m4
configure:7752: checking for flex
configure:7768: found /usr/bin/flex
configure:7779: result: flex
configure:7800: checking for flex
configure:7816: found /usr/bin/flex
configure:7827: result: flex
configure:7847: checking for makeinfo
configure:7863: found /usr/bin/makeinfo
configure:7874: result: makeinfo
configure:7908: checking for expect
configure:7924: found /usr/bin/expect
configure:7935: result: expect
configure:7957: checking for runtest
configure:7973: found /usr/bin/runtest
configure:7984: result: runtest
configure:8102: checking for ar
configure:8118: found /usr/bin/ar
configure:8129: result: ar
configure:8243: checking for as
configure:8259: found /usr/bin/as
configure:8270: result: as
configure:8384: checking for dlltool
configure:8414: result: no
configure:8525: checking for ld
configure:8541: found /usr/bin/ld
configure:8552: result: ld
configure:8666: checking for lipo
configure:8696: result: no
configure:8807: checking for nm
configure:8823: found /usr/bin/nm
configure:8834: result: nm
configure:8948: checking for ranlib
configure:8964: found /usr/bin/ranlib
configure:8975: result: ranlib
configure:9084: checking for strip
configure:9100: found /usr/bin/strip
configure:9111: result: strip
configure:9220: checking for windres
configure:9250: result: no
configure:9361: checking for windmc
configure:9391: result: no
configure:9502: checking for objcopy
configure:9518: found /usr/bin/objcopy
configure:9529: result: objcopy
configure:9643: checking for objdump
configure:9659: found /usr/bin/objdump
configure:9670: result: objdump
configure:9784: checking for readelf
configure:9800: found /usr/bin/readelf
configure:9811: result: readelf
configure:9964: checking for cc
configure:9980: found /usr/bin/cc
configure:9991: result: cc
configure:10125: checking for c++
configure:10141: found /usr/local/gnu/bin/c++
configure:10152: result: c++
configure:10286: checking for gcc
configure:10302: found /usr/local/gnu/bin/gcc
configure:10313: result: gcc
configure:10442: checking for gcj
configure:10458: found /usr/bin/gcj
configure:10469: result: gcj
configure:10603: checking for gfortran
configure:10619: found /usr/local/gnu/bin/gfortran
configure:10630: result: gfortran
configure:10764: checking for gccgo
configure:10794: result: no
configure:10855: checking for ar
configure:10888: result: no
configure:11005: checking for ar
configure:11021: found /usr/bin/ar
configure:11032: result: ar
configure:11085: checking for as
configure:11118: result: no
configure:11235: checking for as
configure:11251: found /usr/bin/as
configure:11262: result: as
configure:11315: checking for dlltool
configure:11348: result: no
configure:11465: checking for dlltool
configure:11495: result: no
configure:11545: checking for ld
configure:11578: result: no
configure:11695: checking for ld
configure:11711: found /usr/bin/ld
configure:11722: result: ld
configure:11775: checking for lipo
configure:11808: result: no
configure:11925: checking for lipo
configure:11955: result: no
configure:12005: checking for nm
configure:12038: result: no
configure:12155: checking for nm
configure:12171: found /usr/bin/nm
configure:12182: result: nm
configure:12235: checking for objdump
configure:12268: result: no
configure:12385: checking for objdump
configure:12401: found /usr/bin/objdump
configure:12412: result: objdump
configure:12465: checking for ranlib
configure:12498: result: no
configure:12615: checking for ranlib
configure:12631: found /usr/bin/ranlib
configure:12642: result: ranlib
configure:12695: checking for readelf
configure:12728: result: no
configure:12845: checking for readelf
configure:12861: found /usr/bin/readelf
configure:12872: result: readelf
configure:12925: checking for strip
configure:12958: result: no
configure:13075: checking for strip
configure:13091: found /usr/bin/strip
configure:13102: result: strip
configure:13155: checking for windres
configure:13188: result: no
configure:13305: checking for windres
configure:13335: result: no
configure:13385: checking for windmc
configure:13418: result: no
configure:13535: checking for windmc
configure:13565: result: no
configure:13593: checking where to find the target ar
configure:13626: result: host tool
configure:13635: checking where to find the target as
configure:13668: result: host tool
configure:13677: checking where to find the target cc
configure:13700: result: just compiled
configure:13719: checking where to find the target c++
configure:13745: result: just compiled
configure:13764: checking where to find the target c++ for libstdc++
configure:13790: result: just compiled
configure:13809: checking where to find the target dlltool
configure:13842: result: host tool
configure:13851: checking where to find the target gcc
configure:13874: result: just compiled
configure:13893: checking where to find the target gcj
configure:13929: result: host tool
configure:13938: checking where to find the target gfortran
configure:13974: result: host tool
configure:13983: checking where to find the target gccgo
configure:14019: result: host tool
configure:14028: checking where to find the target ld
configure:14061: result: host tool
configure:14070: checking where to find the target lipo
configure:14092: result: host tool
configure:14101: checking where to find the target nm
configure:14134: result: host tool
configure:14143: checking where to find the target objdump
configure:14176: result: host tool
configure:14185: checking where to find the target ranlib
configure:14218: result: host tool
configure:14227: checking where to find the target readelf
configure:14260: result: host tool
configure:14269: checking where to find the target strip
configure:14302: result: host tool
configure:14311: checking where to find the target windres
configure:14344: result: host tool
configure:14353: checking where to find the target windmc
configure:14386: result: host tool
configure:14423: checking whether to enable maintainer-specific portions of Makefiles
configure:14432: result: no
configure:14643: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by config.status, which was
generated by GNU Autoconf 2.64.  Invocation command line was

  CONFIG_FILES    = 
  CONFIG_HEADERS  = 
  CONFIG_LINKS    = 
  CONFIG_COMMANDS = 
  $ ./config.status 

on cl183

config.status:991: creating Makefile

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=x86_64-unknown-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_AR_FOR_TARGET_set=
ac_cv_env_AR_FOR_TARGET_value=
ac_cv_env_AR_set=
ac_cv_env_AR_value=
ac_cv_env_AS_FOR_TARGET_set=
ac_cv_env_AS_FOR_TARGET_value=
ac_cv_env_AS_set=
ac_cv_env_AS_value=
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_FOR_TARGET_set=
ac_cv_env_CC_FOR_TARGET_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_FOR_TARGET_set=
ac_cv_env_CXX_FOR_TARGET_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_DLLTOOL_FOR_TARGET_set=
ac_cv_env_DLLTOOL_FOR_TARGET_value=
ac_cv_env_DLLTOOL_set=
ac_cv_env_DLLTOOL_value=
ac_cv_env_GCC_FOR_TARGET_set=
ac_cv_env_GCC_FOR_TARGET_value=
ac_cv_env_GCJ_FOR_TARGET_set=
ac_cv_env_GCJ_FOR_TARGET_value=
ac_cv_env_GFORTRAN_FOR_TARGET_set=
ac_cv_env_GFORTRAN_FOR_TARGET_value=
ac_cv_env_GOC_FOR_TARGET_set=
ac_cv_env_GOC_FOR_TARGET_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LD_FOR_TARGET_set=
ac_cv_env_LD_FOR_TARGET_value=
ac_cv_env_LD_set=
ac_cv_env_LD_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_LIPO_FOR_TARGET_set=
ac_cv_env_LIPO_FOR_TARGET_value=
ac_cv_env_LIPO_set=
ac_cv_env_LIPO_value=
ac_cv_env_NM_FOR_TARGET_set=
ac_cv_env_NM_FOR_TARGET_value=
ac_cv_env_NM_set=
ac_cv_env_NM_value=
ac_cv_env_OBJCOPY_set=
ac_cv_env_OBJCOPY_value=
ac_cv_env_OBJDUMP_FOR_TARGET_set=
ac_cv_env_OBJDUMP_FOR_TARGET_value=
ac_cv_env_OBJDUMP_set=
ac_cv_env_OBJDUMP_value=
ac_cv_env_RANLIB_FOR_TARGET_set=
ac_cv_env_RANLIB_FOR_TARGET_value=
ac_cv_env_RANLIB_set=
ac_cv_env_RANLIB_value=
ac_cv_env_READELF_FOR_TARGET_set=
ac_cv_env_READELF_FOR_TARGET_value=
ac_cv_env_READELF_set=
ac_cv_env_READELF_value=
ac_cv_env_STRIP_FOR_TARGET_set=
ac_cv_env_STRIP_FOR_TARGET_value=
ac_cv_env_STRIP_set=
ac_cv_env_STRIP_value=
ac_cv_env_WINDMC_FOR_TARGET_set=
ac_cv_env_WINDMC_FOR_TARGET_value=
ac_cv_env_WINDMC_set=
ac_cv_env_WINDMC_value=
ac_cv_env_WINDRES_FOR_TARGET_set=
ac_cv_env_WINDRES_FOR_TARGET_value=
ac_cv_env_WINDRES_set=
ac_cv_env_WINDRES_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_build_configargs_set=
ac_cv_env_build_configargs_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_host_configargs_set=
ac_cv_env_host_configargs_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_env_target_configargs_set=
ac_cv_env_target_configargs_value=
ac_cv_host=x86_64-unknown-linux-gnu
ac_cv_objext=o
ac_cv_path_SED=/bin/sed
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AR=ar
ac_cv_prog_AR_FOR_TARGET=ar
ac_cv_prog_AS=as
ac_cv_prog_AS_FOR_TARGET=as
ac_cv_prog_AWK=gawk
ac_cv_prog_BISON=bison
ac_cv_prog_CC_FOR_TARGET=cc
ac_cv_prog_CXX_FOR_TARGET=c++
ac_cv_prog_EXPECT=expect
ac_cv_prog_FLEX=flex
ac_cv_prog_GCC_FOR_TARGET=gcc
ac_cv_prog_GCJ_FOR_TARGET=gcj
ac_cv_prog_GFORTRAN_FOR_TARGET=gfortran
ac_cv_prog_LD=ld
ac_cv_prog_LD_FOR_TARGET=ld
ac_cv_prog_LEX=flex
ac_cv_prog_M4=m4
ac_cv_prog_MAKEINFO=makeinfo
ac_cv_prog_NM=nm
ac_cv_prog_NM_FOR_TARGET=nm
ac_cv_prog_OBJCOPY=objcopy
ac_cv_prog_OBJDUMP=objdump
ac_cv_prog_OBJDUMP_FOR_TARGET=objdump
ac_cv_prog_RANLIB=ranlib
ac_cv_prog_RANLIB_FOR_TARGET=ranlib
ac_cv_prog_READELF=readelf
ac_cv_prog_READELF_FOR_TARGET=readelf
ac_cv_prog_RUNTEST=runtest
ac_cv_prog_STRIP=strip
ac_cv_prog_STRIP_FOR_TARGET=strip
ac_cv_prog_YACC='bison -y'
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_GNATBIND=gnatbind
ac_cv_prog_ac_ct_GNATMAKE=gnatmake
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_cxx_g=yes
ac_cv_target=x86_64-unknown-linux-gnu
acx_cv_cc_gcc_supports_ada=no
acx_cv_prog_LN=ln
gcc_cv_isl=no
gcc_cv_prog_cmp_skip='cmp --ignore-initial=16 $$f1 $$f2'
gcc_cv_tool_dirs=/home/dstaple/local/libexec/gcc/x86_64-unknown-linux-gnu/4.8.0:/home/dstaple/local/libexec/gcc/x86_64-unknown-linux-gnu:/usr/lib/gcc/x86_64-unknown-linux-gnu/4.8.0:/usr/lib/gcc/x86_64-unknown-linux-gnu:/home/dstaple/local/x86_64-unknown-linux-gnu/bin/x86_64-unknown-linux-gnu/4.8.0:/home/dstaple/local/x86_64-unknown-linux-gnu/bin:
gcc_cv_tool_prefix=/home/dstaple/local
lt_cv_objdir=.libs

## ----------------- ##
## Output variables. ##
## ----------------- ##

AR='ar'
AR_FOR_BUILD='$(AR)'
AR_FOR_TARGET='$(AR)'
AS='as'
AS_FOR_BUILD='$(AS)'
AS_FOR_TARGET='$(AS)'
AWK='gawk'
BISON='bison'
BUILD_CONFIG='bootstrap-debug'
CC='gcc'
CC_FOR_BUILD='$(CC)'
CC_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/xgcc -B$$r/$(HOST_SUBDIR)/gcc/'
CFLAGS='-g -O2'
CFLAGS_FOR_BUILD='-g -O2'
CFLAGS_FOR_TARGET='-g -O2'
COMPILER_AS_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/as'
COMPILER_LD_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/collect-ld'
COMPILER_NM_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/nm'
CONFIGURE_GDB_TK=''
CPPFLAGS=''
CXX='g++'
CXXFLAGS='-g -O2'
CXXFLAGS_FOR_BUILD='-g -O2'
CXXFLAGS_FOR_TARGET='-g -O2'
CXX_FOR_BUILD='$(CXX)'
CXX_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/xg++ -B$$r/$(HOST_SUBDIR)/gcc/ -nostdinc++ `if test -f $$r/$(TARGET_SUBDIR)/libstdc++-v3/scripts/testsuite_flags; then $(SHELL) $$r/$(TARGET_SUBDIR)/libstdc++-v3/scripts/testsuite_flags --build-includes; else echo -funconfigured-libstdc++-v3 ; fi` -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src/.libs'
DEBUG_PREFIX_CFLAGS_FOR_TARGET=''
DEFS='-DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DLT_OBJDIR=\".libs/\"'
DLLTOOL='dlltool'
DLLTOOL_FOR_BUILD='$(DLLTOOL)'
DLLTOOL_FOR_TARGET='$(DLLTOOL)'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EXEEXT=''
EXPECT='expect'
EXTRA_CONFIGARGS_LIBJAVA='--disable-static'
FLAGS_FOR_TARGET=' -B$(build_tooldir)/bin/ -B$(build_tooldir)/lib/ -isystem $(build_tooldir)/include -isystem $(build_tooldir)/sys-include'
FLEX='flex'
GCC_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/xgcc -B$$r/$(HOST_SUBDIR)/gcc/'
GCC_SHLIB_SUBDIR=''
GCJ_FOR_BUILD='$(GCJ)'
GCJ_FOR_TARGET='$(GCJ)'
GDB_TK=''
GFORTRAN_FOR_BUILD='$(GFORTRAN)'
GFORTRAN_FOR_TARGET='$(GFORTRAN)'
GNATBIND='gnatbind'
GNATMAKE='gnatmake'
GOC_FOR_BUILD='$(GOC)'
GOC_FOR_TARGET='$(GOC)'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_GDB_TK=''
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
LD='ld'
LDFLAGS=''
LDFLAGS_FOR_BUILD=''
LDFLAGS_FOR_TARGET=''
LD_FOR_BUILD='$(LD)'
LD_FOR_TARGET='$(LD)'
LEX='flex'
LIBOBJS=''
LIBS=''
LIPO='lipo'
LIPO_FOR_TARGET='$(LIPO)'
LN='ln'
LN_S='ln -s'
LTLIBOBJS=''
M4='m4'
MAINT='#'
MAINTAINER_MODE_FALSE=''
MAINTAINER_MODE_TRUE='#'
MAKEINFO='makeinfo'
NM='nm'
NM_FOR_BUILD='$(NM)'
NM_FOR_TARGET='$(NM)'
OBJCOPY='objcopy'
OBJDUMP='objdump'
OBJDUMP_FOR_TARGET='$(OBJDUMP)'
OBJEXT='o'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_URL=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
RANLIB='ranlib'
RANLIB_FOR_BUILD='$(RANLIB)'
RANLIB_FOR_TARGET='$(RANLIB)'
RAW_CXX_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/xgcc -shared-libgcc -B$$r/$(HOST_SUBDIR)/gcc -nostdinc++ -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src -L$$r/$(TARGET_SUBDIR)/libstdc++-v3/src/.libs'
READELF='readelf'
READELF_FOR_TARGET='$(READELF)'
RPATH_ENVVAR='LD_LIBRARY_PATH'
RUNTEST='runtest'
SED='/bin/sed'
SHELL='/bin/sh'
STRIP='strip'
STRIP_FOR_TARGET='$(STRIP)'
SYSROOT_CFLAGS_FOR_TARGET=''
TOPLEVEL_CONFIGURE_ARGUMENTS='../gcc-4.8.0/configure --prefix=/home/dstaple/local --enable-languages=c,c++'
WINDMC='windmc'
WINDMC_FOR_BUILD='$(WINDMC)'
WINDMC_FOR_TARGET='$(WINDMC)'
WINDRES='windres'
WINDRES_FOR_BUILD='$(WINDRES)'
WINDRES_FOR_TARGET='$(WINDRES)'
YACC='bison -y'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
bindir='${exec_prefix}/bin'
build='x86_64-unknown-linux-gnu'
build_alias=''
build_configargs=' --cache-file=../config.cache '\''--prefix=/home/dstaple/local'\'' '\''--enable-languages=c,c++,lto'\'' --program-transform-name='\''s,y,y,'\'' --disable-option-checking'
build_configdirs=' libiberty fixincludes'
build_cpu='x86_64'
build_libsubdir='build-x86_64-unknown-linux-gnu'
build_noncanonical='x86_64-unknown-linux-gnu'
build_os='linux-gnu'
build_subdir='build-x86_64-unknown-linux-gnu'
build_tooldir='${exec_prefix}/x86_64-unknown-linux-gnu'
build_vendor='unknown'
clooginc=''
clooglibs=''
compare_exclusions='gcc/cc*-checksum$(objext) | gcc/ada/*tools/*'
configdirs=' intl libiberty zlib libbacktrace libcpp libdecnumber gmp mpfr mpc fixincludes gcc lto-plugin'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
do_compare='cmp --ignore-initial=16 $$f1 $$f2'
docdir='${datarootdir}/doc/${PACKAGE}'
dvidir='${docdir}'
exec_prefix='${prefix}'
extra_host_libiberty_configure_flags='--enable-shared'
extra_isl_gmp_configure_flags='--with-gmp-builddir=$$r/$(HOST_SUBDIR)/gmp'
extra_mpc_gmp_configure_flags='--with-gmp-include=$$r/$(HOST_SUBDIR)/gmp --with-gmp-lib=$$r/$(HOST_SUBDIR)/gmp/.libs'
extra_mpc_mpfr_configure_flags='--with-mpfr-include=$$s/mpfr/src --with-mpfr-lib=$$r/$(HOST_SUBDIR)/mpfr/src/.libs'
extra_mpfr_configure_flags='--with-gmp-include=$$r/$(HOST_SUBDIR)/gmp --with-gmp-lib=$$r/$(HOST_SUBDIR)/gmp/.libs'
gmpinc='-I$$r/$(HOST_SUBDIR)/gmp -I$$s/gmp -I$$r/$(HOST_SUBDIR)/mpfr/src -I$$s/mpfr/src -I$$s/mpc/src '
gmplibs='-L$$r/$(HOST_SUBDIR)/gmp/.libs -L$$r/$(HOST_SUBDIR)/mpfr/src/.libs -L$$r/$(HOST_SUBDIR)/mpc/src/.libs -lmpc -lmpfr -lgmp'
host='x86_64-unknown-linux-gnu'
host_alias=''
host_configargs=' --cache-file=./config.cache  '\''--prefix=/home/dstaple/local'\'' '\''--enable-languages=c,c++,lto'\'' --program-transform-name='\''s,y,y,'\'' --disable-option-checking'
host_cpu='x86_64'
host_noncanonical='x86_64-unknown-linux-gnu'
host_os='linux-gnu'
host_subdir='.'
host_vendor='unknown'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
islinc=''
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
oldincludedir='/usr/include'
pdfdir='${docdir}'
poststage1_ldflags='-static-libstdc++ -static-libgcc'
poststage1_libs=''
prefix='/home/dstaple/local'
program_transform_name='s,y,y,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
stage1_cflags='-g'
stage1_checking='--enable-checking=yes,types'
stage1_languages='c,c++,lto'
stage1_ldflags=''
stage1_libs=''
stage2_werror_flag=''
sysconfdir='${prefix}/etc'
target='x86_64-unknown-linux-gnu'
target_alias=''
target_configargs='--cache-file=./config.cache --enable-multilib   '\''--prefix=/home/dstaple/local'\'' '\''--enable-languages=c,c++,lto'\'' --program-transform-name='\''s,y,y,'\'' --disable-option-checking'
target_configdirs=' libgcc libgomp libatomic libitm libstdc++-v3 libmudflap libsanitizer libssp libquadmath'
target_cpu='x86_64'
target_noncanonical='x86_64-unknown-linux-gnu'
target_os='linux-gnu'
target_subdir='x86_64-unknown-linux-gnu'
target_vendor='unknown'
tooldir='${exec_prefix}/x86_64-unknown-linux-gnu'

## ------------------- ##
## File substitutions. ##
## ------------------- ##

alphaieee_frag='/dev/null'
host_makefile_frag='/dev/null'
ospace_frag='/dev/null'
serialization_dependencies='serdep.tmp'
target_makefile_frag='../gcc-4.8.0/config/mt-gnu'

## ----------- ##
## confdefs.h. ##
## ----------- ##

/* confdefs.h */
#define PACKAGE_NAME ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define PACKAGE_STRING ""
#define PACKAGE_BUGREPORT ""
#define PACKAGE_URL ""
#define LT_OBJDIR ".libs/"

configure: exit 0
make[2]: Entering directory `/home/dstaple/build_gcc/objdir'
make[3]: Entering directory `/home/dstaple/build_gcc/objdir'
rm -f stage_current
make[3]: Leaving directory `/home/dstaple/build_gcc/objdir'
Comparing stages 2 and 3
warning: gcc/cc1plus-checksum.o differs
warning: gcc/cc1-checksum.o differs
Bootstrap comparison failure!
gcc/cp/except.o differs
gcc/cp/method.o differs
gcc/lto/lto-partition.o differs
gcc/lto/lto.o differs
gcc/build/read-md.o differs
gcc/build/gengtype-parse.o differs
gcc/build/gencheck.o differs
gcc/build/print-rtl.o differs
gcc/build/genrecog.o differs
gcc/build/genpreds.o differs
gcc/c-family/c-omp.o differs
gcc/c-family/c-lex.o differs
gcc/c-family/c-opts.o differs
gcc/c-family/c-cppbuiltin.o differs
gcc/c-family/c-format.o differs
gcc/c-family/c-pragma.o differs
gcc/c-family/c-ada-spec.o differs
gcc/gengtype-parse.o differs
gcc/lto-wrapper.o differs
gcc/cfghooks.o differs
gcc/cfgcleanup.o differs
gcc/attribs.o differs
gcc/i386-c.o differs
gcc/bt-load.o differs
gcc/caller-save.o differs
gcc/cfg.o differs
gcc/cfgloop.o differs
gcc/symtab.o differs
gcc/cgraphclones.o differs
gcc/cgraph.o differs
gcc/cfgrtl.o differs
gcc/cselib.o differs
gcc/dce.o differs
gcc/dominance.o differs
gcc/explow.o differs
gcc/dwarf2cfi.o differs
gcc/except.o differs
gcc/fixed-value.o differs
gcc/ggc-common.o differs
gcc/gimple-iterator.o differs
gcc/gimple-low.o differs
gcc/gimple-ssa-strength-reduction.o differs
gcc/ipa-inline.o differs
gcc/ifcvt.o differs
gcc/ipa-cp.o differs
gcc/ira-emit.o differs
gcc/jump.o differs
gcc/ira.o differs
gcc/loop-iv.o differs
gcc/lra-spills.o differs
gcc/mode-switching.o differs
gcc/plugin.o differs
gcc/passes.o differs
gcc/print-tree.o differs
gcc/profile.o differs
gcc/predict.o differs
gcc/reg-stack.o differs
gcc/resource.o differs
gcc/sched-vis.o differs
gcc/sel-sched-dump.o differs
gcc/timevar.o differs
gcc/stor-layout.o differs
gcc/targhooks.o differs
gcc/tree-affine.o differs
gcc/tree-call-cdce.o differs
gcc/tsan.o differs
gcc/tree-cfgcleanup.o differs
gcc/tree-dfa.o differs
gcc/tree-emutls.o differs
gcc/tree-if-conv.o differs
gcc/tree-parloops.o differs
gcc/tree-ssa-copy.o differs
gcc/tree-ssa-dce.o differs
gcc/tree-ssa-loop-prefetch.o differs
gcc/tree-ssa-operands.o differs
gcc/tree-ssa-sink.o differs
gcc/tree-ssa-ter.o differs
gcc/tree-ssa-threadedge.o differs
gcc/tree-ssa-threadupdate.o differs
gcc/tree-tailcall.o differs
gcc/valtrack.o differs
gcc/tree-vect-loop-manip.o differs
gcc/opts-common.o differs
gcc/opts.o differs
gcc/gcov.o differs
gcc/collect2.o differs
gcc/tlink.o differs
gcc/driver-i386.o differs
gmp/mpn/mul.o differs
gmp/mpn/mul_fft.o differs
gmp/mpn/rootrem.o differs
gmp/mpn/tdiv_qr.o differs
gmp/mpn/gcdext.o differs
gmp/mpn/toom62_mul.o differs
gmp/mpn/toom_interpolate_16pts.o differs
libcpp/pch.o differs
libcpp/files.o differs
libcpp/directives.o differs
libcpp/traditional.o differs
libcpp/expr.o differs
libiberty/pic/dwarfnames.o differs
libiberty/pic/cplus-dem.o differs
libiberty/pic/simple-object-elf.o differs
libiberty/pic/simple-object-mach-o.o differs
libiberty/pic/sha1.o differs
libiberty/regex.o differs
libiberty/simple-object-elf.o differs
libiberty/simple-object-mach-o.o differs
libiberty/sha1.o differs
lto-plugin/.libs/lto-plugin.o differs
mpc/src/div.o differs
mpc/src/pow.o differs
mpc/src/mul.o differs
mpfr/src/get_str.o differs
mpfr/src/mul.o differs
mpfr/src/pow.o differs
mpfr/src/round_prec.o differs
mpfr/src/div.o differs
mpfr/src/atan.o differs
mpfr/src/zeta.o differs
mpfr/src/sub1sp.o differs
mpfr/src/strtofr.o differs
mpfr/src/lngamma.o differs
mpfr/src/yn.o differs
mpfr/src/ai.o differs
x86_64-unknown-linux-gnu/libgcc/bid64_mul.o differs
x86_64-unknown-linux-gnu/libgcc/bid64_to_bid128.o differs
x86_64-unknown-linux-gnu/libgcc/bid64_to_uint32.o differs
x86_64-unknown-linux-gnu/libgcc/unwind-dw2-fde-dip.o differs
x86_64-unknown-linux-gnu/libgcc/addtf3_s.o differs
x86_64-unknown-linux-gnu/libgcc/unwind-dw2-fde-dip_s.o differs
x86_64-unknown-linux-gnu/32/libgcc/bid64_noncomp.o differs
x86_64-unknown-linux-gnu/32/libgcc/bid32_to_bid128.o differs
x86_64-unknown-linux-gnu/32/libgcc/bid64_to_bid128.o differs
x86_64-unknown-linux-gnu/32/libgcc/divtf3.o differs
x86_64-unknown-linux-gnu/32/libgcc/multf3.o differs
x86_64-unknown-linux-gnu/32/libgcc/unwind-dw2-fde-dip.o differs
x86_64-unknown-linux-gnu/32/libgcc/unwind-dw2.o differs
x86_64-unknown-linux-gnu/32/libgcc/multf3_s.o differs
x86_64-unknown-linux-gnu/32/libgcc/unwind-dw2-fde-dip_s.o differs
x86_64-unknown-linux-gnu/32/libgomp/.libs/loop_ull.o differs
x86_64-unknown-linux-gnu/32/libgomp/.libs/loop.o differs
x86_64-unknown-linux-gnu/32/libsanitizer/sanitizer_common/.libs/sanitizer_symbolizer.o differs
x86_64-unknown-linux-gnu/32/libsanitizer/sanitizer_common/sanitizer_symbolizer.o differs
x86_64-unknown-linux-gnu/32/libsanitizer/sanitizer_common/sanitizer_linux.o differs
x86_64-unknown-linux-gnu/32/libsanitizer/asan/.libs/asan_fake_stack.o differs
x86_64-unknown-linux-gnu/32/libsanitizer/asan/.libs/asan_rtl.o differs
x86_64-unknown-linux-gnu/32/libsanitizer/asan/.libs/asan_report.o differs
x86_64-unknown-linux-gnu/32/libsanitizer/asan/asan_fake_stack.o differs
x86_64-unknown-linux-gnu/32/libsanitizer/asan/asan_rtl.o differs
x86_64-unknown-linux-gnu/32/libsanitizer/asan/asan_report.o differs
x86_64-unknown-linux-gnu/libsanitizer/sanitizer_common/.libs/sanitizer_linux.o differs
x86_64-unknown-linux-gnu/libsanitizer/sanitizer_common/sanitizer_linux.o differs
x86_64-unknown-linux-gnu/libsanitizer/asan/.libs/asan_rtl.o differs
x86_64-unknown-linux-gnu/libsanitizer/asan/.libs/asan_report.o differs
x86_64-unknown-linux-gnu/libsanitizer/asan/.libs/asan_allocator2.o differs
x86_64-unknown-linux-gnu/libsanitizer/asan/asan_rtl.o differs
x86_64-unknown-linux-gnu/libsanitizer/asan/asan_report.o differs
x86_64-unknown-linux-gnu/libsanitizer/asan/asan_allocator2.o differs
x86_64-unknown-linux-gnu/libsanitizer/tsan/.libs/tsan_rtl_thread.o differs
x86_64-unknown-linux-gnu/libsanitizer/tsan/.libs/tsan_rtl_mutex.o differs
x86_64-unknown-linux-gnu/libsanitizer/tsan/.libs/tsan_interface_java.o differs
x86_64-unknown-linux-gnu/libsanitizer/tsan/.libs/tsan_mman.o differs
x86_64-unknown-linux-gnu/libsanitizer/tsan/tsan_rtl_thread.o differs
x86_64-unknown-linux-gnu/libsanitizer/tsan/tsan_rtl_mutex.o differs
x86_64-unknown-linux-gnu/libsanitizer/tsan/tsan_mman.o differs
x86_64-unknown-linux-gnu/libsanitizer/tsan/tsan_interface_ann.o differs
x86_64-unknown-linux-gnu/libsanitizer/tsan/tsan_interface_java.o differs
zlib/libz_a-infback.o differs
zlib/libz_a-inflate.o differs
make[2]: *** [compare] Error 1
make[2]: Leaving directory `/home/dstaple/build_gcc/objdir'
make[1]: *** [stage3-bubble] Error 2
make[1]: Leaving directory `/home/dstaple/build_gcc/objdir'
make: *** [all] Error 2
make[1]: Entering directory `/home/dstaple/build_gcc/objdir'
make[1]: Leaving directory `/home/dstaple/build_gcc/objdir'
make[1]: Entering directory `/home/dstaple/build_gcc/objdir'
/bin/sh ../gcc-4.8.0/mkinstalldirs /home/dstaple/local /home/dstaple/local
/bin/sh: line 0: cd: ./fixincludes: No such file or directory
make[1]: *** [install-fixincludes] Error 1
make[1]: Leaving directory `/home/dstaple/build_gcc/objdir'
make: *** [install] Error 2
~/build_gcc

[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux