public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* Fwd: Building gcc-4.3.2 using gcc-g++3.3.3
@ 2009-01-29 21:55 Franklyn Simon
  0 siblings, 0 replies; 2+ messages in thread
From: Franklyn Simon @ 2009-01-29 21:55 UTC (permalink / raw)
  To: Kai Ruottu, gcc-help

[-- Attachment #1: Type: text/plain, Size: 5380 bytes --]

Forget attachments

>Date: Thu, 29 Jan 2009 16:53:04 -0500
>To: Kai Ruottu <kai.ruottu@wippies.com>, gcc-help@gcc.gnu.org
>From: Franklyn Simon <franklynsimon@bellsouth.net>
>Subject: Building gcc-4.3.2 using gcc-g++3.3.3
>
>I have SUSE Linux Enterprise Server 9 (SLES9) 
>with gcc-g++3.3.3 and make3.80-184.1 installed 
>on i686-pc.  I am trying to migrate from IRIX6.2 
>OS to Linux.  However, I am having several 
>problems with compiling the source codes.  Some 
>of the problems are with c++ stream as well as 
>return a char* to the calling 
>function.  Therefore, I am trying to install 
>gcc-4.3.2 with the upgrade gcc-g++ compiler, but 
>I am still using the current and old gcc with 
>make3.80-184.1 to build gcc-4.3.2.  I cannot 
>trust this compiler, and I am wondering if this 
>is the problem I might be having building gcc-4.3.2.
>
>I have run out of options in building 
>gcc-4.3.2.  I cannot configure and build 
>gcc-4.3.2, gmp-4.2.4, and mpfr-2.3.2 
>together.  I have to configure and build gmp and 
>mpfr separately to get the library and include 
>files to be generated.  Also, depending on where 
>I build them, I might have to do a make 
>distclean when it is time to build 
>gcc-4.3.2.  The attached is the configuration 
>files and make –j1.  I have tried all the 
>suggestions to build gcc-4.3.2 from gcc help as 
>well as following the directions from 
><http://gcc.gnu.org/install>http://gcc.gnu.org/install
>Also just before make failed, there were several 
>warning message: duplicate const
>
>
>
>Do you have any suggestions to help me?
>
>Thanks
>
>
>At 07:05 AM 1/26/2009, you wrote:
>>Franklyn Simon wrote:
>>
>>>Here is the attached config.log file and output from make -j1
>>>It appears that configuration was okay, but I cannot get to build.
>>>After looking at the config.log file its 
>>>indicates the following two possible 
>>>errors.  I do not know how to go about solving then
>>>Please help. I am using gcc-g++3.3.3 compiler 
>>>and SLES9 on hp pavilion a305w (i686-pc).  I am going a native build
>>
>>Your log tells that you aren't trying to build "only gcc-4.3.2" but to
>>try some kind of "everything at the same time" : binutils, gmp, GCC,...
>>and your build crashing during the 'gmp' build...
>>
>>Traditionally these things have been splitted into smaller pieces so the
>>GNU binutils, the GCC, the 'gmp' etc. sources are 'stand-alone' with
>>their own 'bfd', 'libiberty' etc. subdirs.  But there can be those
>>"combined GNU sources" like those GNUpro ones from Red Hat and in them
>>builds like yours should work. But in them many people have worked in
>>order to get things to work together.
>>
>>Ok, something is wrong in your 'gmp' source install :
>>
>>----------- clip -------------
>>make[3]: Leaving directory `/usr/local/gcc-4.3.2/binutils'
>>Configuring stage 1 in ./gmp
>>configure: loading cache ./config.cache
>>checking build system type... i686-pc-linux-gnu
>>checking host system type... none-pc-linux-gnu
>>checking for a BSD-compatible install... /usr/bin/install -c
>>checking whether build environment is sane... yes
>>checking for gawk... gawk
>>checking whether make sets $(MAKE)... yes
>>make[2]: Leaving directory `/usr/local/gcc-4.3.2'
>>make[1]: Leaving directory `/usr/local/gcc-4.3.2'
>>
>>configure: error: source directory already configured; run "make
>>distclean" there first
>>make[2]: *** [configure-stage1-gmp] Error 1
>>----------- clip -------------
>>
>>The GCC's "Prerequisites" say that the 'gmp-*' and 'mpfr-*' sources
>>could be installed as 'gmp' and 'mpfr' subdirs into the GCC sources.
>>Did you really do this?  Not for instance installing them being
>>"parallel with the GCC sources" ?
>>
>>Building binutils then happens "parallel", totally separately from
>>the GCC sources so one can have '$src/gcc-4.3.2' and
>>'$src/binutils-2.19' but '$src/gcc-4.3.2/gmp' and '$src/gcc-4.3.2/mpfr'
>>for the 'gmp-*' and 'mpfr-*' sources...
>>
>>The $build directory should be a separate one from the sources...
>>Where are your GCC sources? They MUST NOT be in '/usr/local' ! Using
>>that as your chosen '$build' directory sounds really weird. Something
>>like :
>>
>>   /usr/local/src
>>
>>for the unpacked srcs like '/usr/local/src/gcc-4.3.2',
>>'/usr/local/src/gmp-4.2.1', '/usr/local/src/mpfr-2.3.2' etc. would
>>be more "normal". After unpacking the srcs there a suitable $build
>>directory could be the :
>>
>>  /usr/local/build
>>
>>and configuring & building there... Just as the "Install" Prerequisites
>>are telling, one could then have in '/usr/local/src/gcc-4.3.2' :
>>
>>    gmp -> ../gmp-4.2.1
>>    mpfr -> ../mpfr-2.3.2
>>
>>and both 'gmp' and 'mpfr' being built during the GCC build....
>>
>>The '/usr/local' is quite like '/usr' in a Linux system, aimed for
>>local-made apps ('bin'), libraries ('lib'), headers ('include') etc.
>>Anything might happen if one thinks that it is not used for anything
>>in the system...  I myself use '/home/src' as the install place for
>>all kind of source distributions...
>>
>>I tried the "build 'gmp' and 'mpfr' during the gcc-4.3.2 build and
>>things seemed to work even in a $build != $host case (cross-compiling
>>also 'gmp' and 'mpfr' for the '$host' platform while producing GCC
>>binaries for that...

[-- Attachment #2: config.log --]
[-- Type: application/octet-stream, Size: 25956 bytes --]

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.59.  Invocation command line was

  $ /usr/local/src/gcc-4.3.2/configure --enable-languages=c,c++,java --enable-stage1-languages=all --disable-nls --with-long-double-128 --enable-threads=posix --enable-shared --enable-libgcj --with-gmp=/usr/local/src/gmp-4.2.4 --with-mpfr=/usr/local/src/mpfr-2.3.2

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

hostname = glory
uname -m = i686
uname -r = 2.6.5-7.97-default
uname -s = Linux
uname -v = #1 Fri Jul 2 14:21:59 UTC 2004

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

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

PATH: /gcc-4.3.2/gmp
PATH: /gcc-4.3.2/mpfr
PATH: /usr/local/gcc-4.3.2/gmp
PATH: /usr/local/texinfo-4.13/bin
PATH: /usr/sbin
PATH: /bin
PATH: /usr/bin
PATH: /sbin
PATH: /usr/X11R6/bin
PATH: /usr/lib/java/jre/bin
PATH: /u02/app/oracle/product/10.1.0/TestDB/bin
PATH: /u02/app/oracle/product/10.1.0/TestDB/dbs
PATH: /sbin
PATH: /usr/sbin


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

configure:1505: checking build system type
configure:1523: result: i686-pc-linux-gnu
configure:1558: checking host system type
configure:1572: result: i686-pc-linux-gnu
configure:1580: checking target system type
configure:1594: result: i686-pc-linux-gnu
configure:1637: checking for a BSD-compatible install
configure:1692: result: /usr/bin/install -c
configure:1703: checking whether ln works
configure:1725: result: yes
configure:1729: checking whether ln -s works
configure:1733: result: yes
configure:2885: checking for gcc
configure:2901: found /usr/bin/gcc
configure:2911: result: gcc
configure:3155: checking for C compiler version
configure:3158: gcc --version </dev/null >&5
gcc (GCC) 3.3.3 (SuSE Linux)
Copyright (C) 2003 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:3161: $? = 0
configure:3163: gcc -v </dev/null >&5
Reading specs from /usr/lib/gcc-lib/i586-suse-linux/3.3.3/specs
Configured with: ../configure --enable-threads=posix --prefix=/usr --with-local-prefix=/usr/local --infodir=/usr/share/info --mandir=/usr/share/man --enable-languages=c,c++,f77,objc,java,ada --disable-checking --libdir=/usr/lib --enable-libgcj --with-gxx-include-dir=/usr/include/g++ --with-slibdir=/lib --with-system-zlib --enable-shared --enable-__cxa_atexit i586-suse-linux
Thread model: posix
gcc version 3.3.3 (SuSE Linux)
configure:3166: $? = 0
configure:3168: gcc -V </dev/null >&5
gcc: `-V' option must have argument
configure:3171: $? = 1
configure:3194: checking for C compiler default output file name
configure:3197: gcc    conftest.c  >&5
configure:3200: $? = 0
configure:3246: result: a.out
configure:3251: checking whether the C compiler works
configure:3257: ./a.out
configure:3260: $? = 0
configure:3277: result: yes
configure:3284: checking whether we are cross compiling
configure:3286: result: no
configure:3289: checking for suffix of executables
configure:3291: gcc -o conftest    conftest.c  >&5
configure:3294: $? = 0
configure:3319: result: 
configure:3325: checking for suffix of object files
configure:3346: gcc -c   conftest.c >&5
configure:3349: $? = 0
configure:3371: result: o
configure:3375: checking whether we are using the GNU C compiler
configure:3399: gcc -c   conftest.c >&5
configure:3405: $? = 0
configure:3409: test -z 
			 || test ! -s conftest.err
configure:3412: $? = 0
configure:3415: test -s conftest.o
configure:3418: $? = 0
configure:3431: result: yes
configure:3437: checking whether gcc accepts -g
configure:3458: gcc -c -g  conftest.c >&5
configure:3464: $? = 0
configure:3468: test -z 
			 || test ! -s conftest.err
configure:3471: $? = 0
configure:3474: test -s conftest.o
configure:3477: $? = 0
configure:3488: result: yes
configure:3505: checking for gcc option to accept ANSI C
configure:3575: gcc  -c -g -O2  conftest.c >&5
configure:3581: $? = 0
configure:3585: test -z 
			 || test ! -s conftest.err
configure:3588: $? = 0
configure:3591: test -s conftest.o
configure:3594: $? = 0
configure:3612: result: none needed
configure:3630: gcc -c -g -O2  conftest.c >&5
conftest.c:2: error: parse error before "me"
configure:3636: $? = 1
configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
configure:3821: checking for g++
configure:3837: found /usr/bin/g++
configure:3847: result: g++
configure:3863: checking for C++ compiler version
configure:3866: g++ --version </dev/null >&5
g++ (GCC) 3.3.3 (SuSE Linux)
Copyright (C) 2003 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:3869: $? = 0
configure:3871: g++ -v </dev/null >&5
Reading specs from /usr/lib/gcc-lib/i586-suse-linux/3.3.3/specs
Configured with: ../configure --enable-threads=posix --prefix=/usr --with-local-prefix=/usr/local --infodir=/usr/share/info --mandir=/usr/share/man --enable-languages=c,c++,f77,objc,java,ada --disable-checking --libdir=/usr/lib --enable-libgcj --with-gxx-include-dir=/usr/include/g++ --with-slibdir=/lib --with-system-zlib --enable-shared --enable-__cxa_atexit i586-suse-linux
Thread model: posix
gcc version 3.3.3 (SuSE Linux)
configure:3874: $? = 0
configure:3876: g++ -V </dev/null >&5
g++: `-V' option must have argument
configure:3879: $? = 1
configure:3882: checking whether we are using the GNU C++ compiler
configure:3906: g++ -c   conftest.cc >&5
configure:3912: $? = 0
configure:3916: test -z 
			 || test ! -s conftest.err
configure:3919: $? = 0
configure:3922: test -s conftest.o
configure:3925: $? = 0
configure:3938: result: yes
configure:3944: checking whether g++ accepts -g
configure:3965: g++ -c -g  conftest.cc >&5
configure:3971: $? = 0
configure:3975: test -z 
			 || test ! -s conftest.err
configure:3978: $? = 0
configure:3981: test -s conftest.o
configure:3984: $? = 0
configure:3995: result: yes
configure:4037: g++ -c -g -O2  conftest.cc >&5
configure:4043: $? = 0
configure:4047: test -z 
			 || test ! -s conftest.err
configure:4050: $? = 0
configure:4053: test -s conftest.o
configure:4056: $? = 0
configure:4082: g++ -c -g -O2  conftest.cc >&5
conftest.cc: In function `int main()':
conftest.cc:13: error: `exit' undeclared (first use this function)
conftest.cc:13: error: (Each undeclared identifier is reported only once for 
   each function it appears in.)
configure:4088: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| exit (42);
|   ;
|   return 0;
| }
configure:4037: g++ -c -g -O2  conftest.cc >&5
configure:4043: $? = 0
configure:4047: test -z 
			 || test ! -s conftest.err
configure:4050: $? = 0
configure:4053: test -s conftest.o
configure:4056: $? = 0
configure:4082: g++ -c -g -O2  conftest.cc >&5
configure:4088: $? = 0
configure:4092: test -z 
			 || test ! -s conftest.err
configure:4095: $? = 0
configure:4098: test -s conftest.o
configure:4101: $? = 0
configure:4188: checking for gnatbind
configure:4215: result: no
configure:4268: checking for gnatmake
configure:4295: result: no
configure:4307: checking whether compiler driver understands Ada
configure:4330: result: no
configure:4339: checking how to compare bootstrapped objects
configure:4364: result: cmp --ignore-initial=16 $$f1 $$f2
configure:4484: checking for correct version of gmp.h
configure:4507: gcc -c -g -O2 -I/usr/local/src/gmp-4.2.4/include -I/usr/local/src/mpfr-2.3.2/include  conftest.c >&5
configure:4513: $? = 0
configure:4517: test -z 
			 || test ! -s conftest.err
configure:4520: $? = 0
configure:4523: test -s conftest.o
configure:4526: $? = 0
configure:4528: result: yes
configure:4542: checking for correct version of mpfr.h
configure:4573: gcc -o conftest -g -O2 -I/usr/local/src/gmp-4.2.4/include -I/usr/local/src/mpfr-2.3.2/include   conftest.c  -L/usr/local/src/gmp-4.2.4/lib -L/usr/local/src/mpfr-2.3.2/lib -lmpfr -lgmp >&5
configure:4579: $? = 0
configure:4583: test -z 
			 || test ! -s conftest.err
configure:4586: $? = 0
configure:4589: test -s conftest
configure:4592: $? = 0
configure:4616: gcc -o conftest -g -O2 -I/usr/local/src/gmp-4.2.4/include -I/usr/local/src/mpfr-2.3.2/include   conftest.c  -L/usr/local/src/gmp-4.2.4/lib -L/usr/local/src/mpfr-2.3.2/lib -lmpfr -lgmp >&5
configure:4622: $? = 0
configure:4626: test -z 
			 || test ! -s conftest.err
configure:4629: $? = 0
configure:4632: test -s conftest
configure:4635: $? = 0
configure:4637: result: yes
configure:5971: checking for bison
configure:6000: result: no
configure:5971: checking for byacc
configure:6000: result: no
configure:5971: checking for yacc
configure:6000: result: no
configure:6017: checking for bison
configure:6046: result: no
configure:6062: checking for gm4
configure:6091: result: no
configure:6062: checking for gnum4
configure:6091: result: no
configure:6062: checking for m4
configure:6078: found /usr/bin/m4
configure:6088: result: m4
configure:6107: checking for flex
configure:6136: result: no
configure:6107: checking for lex
configure:6136: result: no
configure:6153: checking for flex
configure:6182: result: no
configure:6198: checking for makeinfo
configure:6214: found /usr/local/texinfo-4.13/bin/makeinfo
configure:6224: result: makeinfo
configure:6257: checking for expect
configure:6286: result: no
configure:6304: checking for runtest
configure:6333: result: no
configure:6443: checking for ar
configure:6459: found /usr/bin/ar
configure:6469: result: ar
configure:6578: checking for as
configure:6594: found /usr/bin/as
configure:6604: result: as
configure:6713: checking for dlltool
configure:6742: result: no
configure:6771: checking for ld
configure:6797: result: /usr/lib/gcc-lib/i586-suse-linux/3.3.3/../../../../i586-suse-linux/bin/ld
configure:6983: checking for lipo
configure:7012: result: no
configure:7118: checking for nm
configure:7134: found /usr/bin/nm
configure:7144: result: nm
configure:7253: checking for ranlib
configure:7269: found /usr/bin/ranlib
configure:7279: result: ranlib
configure:7383: checking for strip
configure:7399: found /usr/bin/strip
configure:7409: result: strip
configure:7513: checking for windres
configure:7542: result: no
configure:7648: checking for windmc
configure:7677: result: no
configure:7783: checking for objcopy
configure:7799: found /usr/bin/objcopy
configure:7809: result: objcopy
configure:7918: checking for objdump
configure:7934: found /usr/bin/objdump
configure:7944: result: objdump
configure:8092: checking for cc
configure:8108: found /usr/bin/cc
configure:8118: result: cc
configure:8247: checking for c++
configure:8263: found /usr/bin/c++
configure:8273: result: c++
configure:8402: checking for gcc
configure:8418: found /usr/bin/gcc
configure:8428: result: gcc
configure:8552: checking for gcj
configure:8568: found /usr/bin/gcj
configure:8578: result: gcj
configure:8707: checking for gfortran
configure:8736: result: no
configure:8796: checking for ar
configure:8829: result: no
configure:8941: checking for ar
configure:8957: found /usr/bin/ar
configure:8967: result: ar
configure:9019: checking for as
configure:9052: result: no
configure:9164: checking for as
configure:9180: found /usr/bin/as
configure:9190: result: as
configure:9242: checking for dlltool
configure:9275: result: no
configure:9387: checking for dlltool
configure:9416: result: no
configure:9465: checking for ld
configure:9498: result: no
configure:9610: checking for ld
configure:9626: found /usr/bin/ld
configure:9636: result: ld
configure:9688: checking for lipo
configure:9721: result: no
configure:9833: checking for lipo
configure:9862: result: no
configure:9911: checking for nm
configure:9944: result: no
configure:10056: checking for nm
configure:10072: found /usr/bin/nm
configure:10082: result: nm
configure:10134: checking for objdump
configure:10167: result: no
configure:10279: checking for objdump
configure:10295: found /usr/bin/objdump
configure:10305: result: objdump
configure:10357: checking for ranlib
configure:10390: result: no
configure:10502: checking for ranlib
configure:10518: found /usr/bin/ranlib
configure:10528: result: ranlib
configure:10580: checking for strip
configure:10613: result: no
configure:10725: checking for strip
configure:10741: found /usr/bin/strip
configure:10751: result: strip
configure:10803: checking for windres
configure:10836: result: no
configure:10948: checking for windres
configure:10977: result: no
configure:11026: checking for windmc
configure:11059: result: no
configure:11171: checking for windmc
configure:11200: result: no
configure:11227: checking where to find the target ar
configure:11250: result: just compiled
configure:11269: checking where to find the target as
configure:11302: result: host tool
configure:11311: checking where to find the target cc
configure:11334: result: just compiled
configure:11353: checking where to find the target c++
configure:11379: result: just compiled
configure:11398: checking where to find the target c++ for libstdc++
configure:11424: result: just compiled
configure:11443: checking where to find the target dlltool
configure:11466: result: just compiled
configure:11485: checking where to find the target gcc
configure:11508: result: just compiled
configure:11527: checking where to find the target gcj
configure:11553: result: just compiled
configure:11572: checking where to find the target gfortran
configure:11608: result: host tool
configure:11617: checking where to find the target ld
configure:11650: result: host tool
configure:11659: checking where to find the target lipo
configure:11681: result: host tool
configure:11690: checking where to find the target nm
configure:11713: result: just compiled
configure:11732: checking where to find the target objdump
configure:11755: result: just compiled
configure:11774: checking where to find the target ranlib
configure:11797: result: just compiled
configure:11816: checking where to find the target strip
configure:11839: result: just compiled
configure:11858: checking where to find the target windres
configure:11881: result: just compiled
configure:11900: checking where to find the target windmc
configure:11923: result: just compiled
configure:11970: checking whether to enable maintainer-specific portions of Makefiles
configure:11979: result: no
configure:12012: checking whether -fkeep-inline-functions is supported
configure:12034: gcc -c -g -O2 -fkeep-inline-functions  conftest.c >&5
configure:12040: $? = 0
configure:12044: test -z 
			 || test ! -s conftest.err
configure:12047: $? = 0
configure:12050: test -s conftest.o
configure:12053: $? = 0
configure:12055: result: yes
configure:12272: creating ./config.status

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

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

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

on glory

config.status:762: creating Makefile

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

ac_cv_build=i686-pc-linux-gnu
ac_cv_build_alias=i686-pc-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_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_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_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_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_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_exeext=
ac_cv_host=i686-pc-linux-gnu
ac_cv_host_alias=i686-pc-linux-gnu
ac_cv_objext=o
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_CC_FOR_TARGET=cc
ac_cv_prog_CXX_FOR_TARGET=c++
ac_cv_prog_GCC_FOR_TARGET=gcc
ac_cv_prog_GCJ_FOR_TARGET=gcj
ac_cv_prog_LD=/usr/lib/gcc-lib/i586-suse-linux/3.3.3/../../../../i586-suse-linux/bin/ld
ac_cv_prog_LD_FOR_TARGET=ld
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_STRIP=strip
ac_cv_prog_STRIP_FOR_TARGET=strip
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_GNATBIND=no
ac_cv_prog_ac_ct_GNATMAKE=no
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=
ac_cv_prog_cxx_g=yes
ac_cv_target=i686-pc-linux-gnu
ac_cv_target_alias=i686-pc-linux-gnu
acx_cv_cc_gcc_supports_ada=no
acx_cv_prog_LN=ln
gcc_cv_prog_cmp_skip='cmp --ignore-initial=16 $$f1 $$f2'
gcc_cv_tool_dirs=/usr/local/libexec/gcc/i686-pc-linux-gnu/4.3.2:/usr/local/libexec/gcc/i686-pc-linux-gnu:/usr/lib/gcc/i686-pc-linux-gnu/4.3.2:/usr/lib/gcc/i686-pc-linux-gnu:/usr/local/i686-pc-linux-gnu/bin/i686-pc-linux-gnu/4.3.2:/usr/local/i686-pc-linux-gnu/bin:
gcc_cv_tool_prefix=/usr/local

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

AR='ar'
AR_FOR_BUILD='$(AR)'
AR_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/ar'
AS='as'
AS_FOR_BUILD='$(AS)'
AS_FOR_TARGET='$(AS)'
BISON='/usr/local/src/gcc-4.3.2/missing bison'
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'
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'
CXX_FOR_BUILD='$(CXX)'
CXX_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/g++ -B$$r/$(HOST_SUBDIR)/gcc/ -nostdinc++ `test ! -f $$r/$(TARGET_SUBDIR)/libstdc++-v3/scripts/testsuite_flags || $(SHELL) $$r/$(TARGET_SUBDIR)/libstdc++-v3/scripts/testsuite_flags --build-includes` -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=\"\" '
DLLTOOL='dlltool'
DLLTOOL_FOR_BUILD='$(DLLTOOL)'
DLLTOOL_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/dlltool'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EXEEXT=''
EXPECT='expect'
FLAGS_FOR_TARGET=' -B$(build_tooldir)/bin/ -B$(build_tooldir)/lib/ -isystem $(build_tooldir)/include -isystem $(build_tooldir)/sys-include'
FLEX='/usr/local/src/gcc-4.3.2/missing flex'
GCC_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/xgcc -B$$r/$(HOST_SUBDIR)/gcc/'
GCJ_FOR_BUILD='$(GCJ)'
GCJ_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/gcj -B$$r/$(HOST_SUBDIR)/gcc/'
GDB_TK=''
GFORTRAN_FOR_BUILD='$(GFORTRAN)'
GFORTRAN_FOR_TARGET='$(GFORTRAN)'
GNATBIND='no'
GNATMAKE='no'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_GDB_TK=''
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
LD='/usr/lib/gcc-lib/i586-suse-linux/3.3.3/../../../../i586-suse-linux/bin/ld'
LDFLAGS=''
LDFLAGS_FOR_BUILD=''
LD_FOR_BUILD='$(LD)'
LD_FOR_TARGET='$(LD)'
LEX='/usr/local/src/gcc-4.3.2/missing 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='$$r/$(HOST_SUBDIR)/binutils/nm-new'
OBJCOPY='objcopy'
OBJDUMP='objdump'
OBJDUMP_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/objdump'
OBJEXT='o'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
RANLIB='ranlib'
RANLIB_FOR_BUILD='$(RANLIB)'
RANLIB_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/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'
RPATH_ENVVAR='LD_LIBRARY_PATH'
RUNTEST='runtest'
SHELL='/bin/sh'
STRIP='strip'
STRIP_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/strip'
SYSROOT_CFLAGS_FOR_TARGET=''
TOPLEVEL_CONFIGURE_ARGUMENTS='/usr/local/src/gcc-4.3.2/configure --enable-languages=c,c++,java --enable-stage1-languages=all --disable-nls --with-long-double-128 --enable-threads=posix --enable-shared --enable-libgcj --with-gmp=/usr/local/src/gmp-4.2.4 --with-mpfr=/usr/local/src/mpfr-2.3.2'
WINDMC='windmc'
WINDMC_FOR_BUILD='$(WINDMC)'
WINDMC_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/windmc'
WINDRES='windres'
WINDRES_FOR_BUILD='$(WINDRES)'
WINDRES_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/windres'
YACC='/usr/local/src/gcc-4.3.2/missing bison -y'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_GNATBIND='no'
ac_ct_GNATMAKE='no'
bindir='${exec_prefix}/bin'
build='i686-pc-linux-gnu'
build_alias=''
build_configargs='--cache-file=../config.cache '--enable-stage1-languages=all' '--disable-nls' '--with-long-double-128' '--enable-threads=posix' '--enable-shared' '--enable-libgcj' '--with-gmp=/usr/local/src/gmp-4.2.4' '--with-mpfr=/usr/local/src/mpfr-2.3.2' '--enable-languages=c,c++,java' --program-transform-name='s,y,y,''
build_configdirs=' libiberty fixincludes'
build_cpu='i686'
build_libsubdir='build-i686-pc-linux-gnu'
build_noncanonical='i686-pc-linux-gnu'
build_os='linux-gnu'
build_subdir='build-i686-pc-linux-gnu'
build_tooldir='${exec_prefix}/i686-pc-linux-gnu'
build_vendor='pc'
config_shell='/bin/sh'
configdirs=' intl libiberty zlib libcpp libdecnumber gmp mpfr binutils fixincludes gcc'
datadir='${prefix}/share'
datarootdir='${prefix}/share'
do_compare='cmp --ignore-initial=16 $$f1 $$f2'
docdir='${datarootdir}/doc'
exec_prefix='${prefix}'
gmpinc='-I/usr/local/src/gmp-4.2.4/include -I/usr/local/src/mpfr-2.3.2/include'
gmplibs='-L/usr/local/src/gmp-4.2.4/lib -L/usr/local/src/mpfr-2.3.2/lib -lmpfr -lgmp'
host='i686-pc-linux-gnu'
host_alias=''
host_configargs='--cache-file=./config.cache  '--enable-stage1-languages=all' '--disable-nls' '--with-long-double-128' '--enable-threads=posix' '--enable-shared' '--enable-libgcj' '--with-gmp=/usr/local/src/gmp-4.2.4' '--with-mpfr=/usr/local/src/mpfr-2.3.2' '--enable-languages=c,c++,java' --program-transform-name='s,y,y,''
host_cpu='i686'
host_noncanonical='i686-pc-linux-gnu'
host_os='linux-gnu'
host_subdir='.'
host_vendor='pc'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${prefix}/info'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='${prefix}/var'
mandir='${prefix}/man'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr/local'
program_transform_name='s,y,y,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
stage1_cflags='-g -fkeep-inline-functions'
stage1_checking='--enable-checking=yes,types'
stage1_languages='c,c++,java'
stage2_werror_flag=''
sysconfdir='${prefix}/etc'
target='i686-pc-linux-gnu'
target_alias=''
target_configargs='--cache-file=./config.cache --enable-multilib '--enable-stage1-languages=all' '--disable-nls' '--with-long-double-128' '--enable-threads=posix' '--enable-shared' '--enable-libgcj' '--with-gmp=/usr/local/src/gmp-4.2.4' '--with-mpfr=/usr/local/src/mpfr-2.3.2' '--enable-languages=c,c++,java' --program-transform-name='s,y,y,''
target_cpu='i686'
target_noncanonical='i686-pc-linux-gnu'
target_os='linux-gnu'
target_subdir='i686-pc-linux-gnu'
target_vendor='pc'
tooldir='${exec_prefix}/i686-pc-linux-gnu'

## ------------- ##
## Output files. ##
## ------------- ##

alphaieee_frag='/dev/null'
host_makefile_frag='/usr/local/src/gcc-4.3.2/config/mh-x86omitfp'
ospace_frag='/dev/null'
serialization_dependencies='serdep.tmp'
target_makefile_frag='/usr/local/src/gcc-4.3.2/config/mt-gnu'

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

#define PACKAGE_BUGREPORT ""
#define PACKAGE_NAME ""
#define PACKAGE_STRING ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#endif
#ifdef __cplusplus
extern "C" void std::exit (int) throw (); using std::exit;

configure: exit 0

[-- Attachment #3: makej1.log --]
[-- Type: application/octet-stream, Size: 16468 bytes --]

[ -f stage_final ] || echo stage3 > stage_final
make[1]: Entering directory `/usr/local/build'
make[2]: Entering directory `/usr/local/build'
make[3]: Entering directory `/usr/local/build'
rm -f stage_current
make[3]: Leaving directory `/usr/local/build'
make[2]: Leaving directory `/usr/local/build'
make[2]: Entering directory `/usr/local/build'
make[3]: Entering directory `/usr/local/build/libiberty'
make[4]: Entering directory `/usr/local/build/libiberty/testsuite'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/build/libiberty/testsuite'
make[3]: Leaving directory `/usr/local/build/libiberty'
make[3]: Entering directory `/usr/local/build/intl'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/build/intl'
make[3]: Entering directory `/usr/local/build/binutils'
make[4]: Entering directory `/usr/local/build/binutils'
make[5]: Entering directory `/usr/local/build/binutils/libiberty'
make[6]: Entering directory `/usr/local/build/binutils/libiberty/testsuite'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/binutils/libiberty/testsuite'
make[5]: Leaving directory `/usr/local/build/binutils/libiberty'
make[5]: Entering directory `/usr/local/build/binutils/intl'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/binutils/intl'
make[5]: Entering directory `/usr/local/build/binutils/bfd'
Making info in doc
make[6]: Entering directory `/usr/local/build/binutils/bfd/doc'
make[6]: Nothing to be done for `info'.
make[6]: Leaving directory `/usr/local/build/binutils/bfd/doc'
Making info in po
make[6]: Entering directory `/usr/local/build/binutils/bfd/po'
make[6]: Nothing to be done for `info'.
make[6]: Leaving directory `/usr/local/build/binutils/bfd/po'
make[6]: Entering directory `/usr/local/build/binutils/bfd'
make[6]: Nothing to be done for `info-am'.
make[6]: Leaving directory `/usr/local/build/binutils/bfd'
make  all-recursive
make[6]: Entering directory `/usr/local/build/binutils/bfd'
Making all in doc
make[7]: Entering directory `/usr/local/build/binutils/bfd/doc'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/usr/local/build/binutils/bfd/doc'
Making all in po
make[7]: Entering directory `/usr/local/build/binutils/bfd/po'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/usr/local/build/binutils/bfd/po'
make[7]: Entering directory `/usr/local/build/binutils/bfd'
make[7]: Nothing to be done for `all-am'.
make[7]: Leaving directory `/usr/local/build/binutils/bfd'
make[6]: Leaving directory `/usr/local/build/binutils/bfd'
make[5]: Leaving directory `/usr/local/build/binutils/bfd'
make[5]: Entering directory `/usr/local/build/binutils/opcodes'
make  all-recursive
make[6]: Entering directory `/usr/local/build/binutils/opcodes'
Making all in po
make[7]: Entering directory `/usr/local/build/binutils/opcodes/po'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/usr/local/build/binutils/opcodes/po'
make[7]: Entering directory `/usr/local/build/binutils/opcodes'
make[7]: Nothing to be done for `all-am'.
make[7]: Leaving directory `/usr/local/build/binutils/opcodes'
make[6]: Leaving directory `/usr/local/build/binutils/opcodes'
make[5]: Leaving directory `/usr/local/build/binutils/opcodes'
make[5]: Entering directory `/usr/local/build/binutils/binutils'
Making info in doc
make[6]: Entering directory `/usr/local/build/binutils/binutils/doc'
make[6]: Nothing to be done for `info'.
make[6]: Leaving directory `/usr/local/build/binutils/binutils/doc'
Making info in po
make[6]: Entering directory `/usr/local/build/binutils/binutils/po'
make[6]: Nothing to be done for `info'.
make[6]: Leaving directory `/usr/local/build/binutils/binutils/po'
make[6]: Entering directory `/usr/local/build/binutils/binutils'
make[6]: Nothing to be done for `info-am'.
make[6]: Leaving directory `/usr/local/build/binutils/binutils'
make  all-recursive
make[6]: Entering directory `/usr/local/build/binutils/binutils'
Making all in doc
make[7]: Entering directory `/usr/local/build/binutils/binutils/doc'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/usr/local/build/binutils/binutils/doc'
Making all in po
make[7]: Entering directory `/usr/local/build/binutils/binutils/po'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/usr/local/build/binutils/binutils/po'
make[7]: Entering directory `/usr/local/build/binutils/binutils'
make[7]: Nothing to be done for `all-am'.
make[7]: Leaving directory `/usr/local/build/binutils/binutils'
make[6]: Leaving directory `/usr/local/build/binutils/binutils'
make[5]: Leaving directory `/usr/local/build/binutils/binutils'
make[5]: Entering directory `/usr/local/build/binutils/etc'
for f in standards.info configure.info; do \
  if test -f /usr/local/src/gcc-4.3.2/binutils/etc/`echo $f | sed -e 's/.info$/.texi/'`; then \
    if make "MAKEINFO=makeinfo --split-size=5000000 --split-size=5000000 --split-size=5000000 --split-size=5000000 --split-size=5000000" $f; then \
      true; \
    else \
      exit 1; \
    fi; \
  fi; \
done
make[6]: Entering directory `/usr/local/build/binutils/etc'
make[6]: `/usr/local/src/gcc-4.3.2/binutils/etc/standards.info' is up to date.
make[6]: Leaving directory `/usr/local/build/binutils/etc'
make[6]: Entering directory `/usr/local/build/binutils/etc'
make[6]: `/usr/local/src/gcc-4.3.2/binutils/etc/configure.info' is up to date.
make[6]: Leaving directory `/usr/local/build/binutils/etc'
make[5]: Leaving directory `/usr/local/build/binutils/etc'
make[5]: Entering directory `/usr/local/build/binutils/gas'
Making info in doc
make[6]: Entering directory `/usr/local/build/binutils/gas/doc'
make[6]: Nothing to be done for `info'.
make[6]: Leaving directory `/usr/local/build/binutils/gas/doc'
Making info in po
make[6]: Entering directory `/usr/local/build/binutils/gas/po'
make[6]: Nothing to be done for `info'.
make[6]: Leaving directory `/usr/local/build/binutils/gas/po'
make[6]: Entering directory `/usr/local/build/binutils/gas'
make[6]: Nothing to be done for `info-am'.
make[6]: Leaving directory `/usr/local/build/binutils/gas'
make  all-recursive
make[6]: Entering directory `/usr/local/build/binutils/gas'
Making all in doc
make[7]: Entering directory `/usr/local/build/binutils/gas/doc'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/usr/local/build/binutils/gas/doc'
Making all in po
make[7]: Entering directory `/usr/local/build/binutils/gas/po'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/usr/local/build/binutils/gas/po'
make[7]: Entering directory `/usr/local/build/binutils/gas'
make[7]: Nothing to be done for `all-am'.
make[7]: Leaving directory `/usr/local/build/binutils/gas'
make[6]: Leaving directory `/usr/local/build/binutils/gas'
make[5]: Leaving directory `/usr/local/build/binutils/gas'
make[5]: Entering directory `/usr/local/build/binutils/gprof'
make  all-recursive
make[6]: Entering directory `/usr/local/build/binutils/gprof'
Making all in po
make[7]: Entering directory `/usr/local/build/binutils/gprof/po'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/usr/local/build/binutils/gprof/po'
make[7]: Entering directory `/usr/local/build/binutils/gprof'
make[7]: Nothing to be done for `all-am'.
make[7]: Leaving directory `/usr/local/build/binutils/gprof'
make[6]: Leaving directory `/usr/local/build/binutils/gprof'
make[5]: Leaving directory `/usr/local/build/binutils/gprof'
make[5]: Entering directory `/usr/local/build/binutils/ld'
Making info in po
make[6]: Entering directory `/usr/local/build/binutils/ld/po'
make[6]: Nothing to be done for `info'.
make[6]: Leaving directory `/usr/local/build/binutils/ld/po'
make[6]: Entering directory `/usr/local/build/binutils/ld'
make[6]: Nothing to be done for `info-am'.
make[6]: Leaving directory `/usr/local/build/binutils/ld'
make  all-recursive
make[6]: Entering directory `/usr/local/build/binutils/ld'
Making all in po
make[7]: Entering directory `/usr/local/build/binutils/ld/po'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/usr/local/build/binutils/ld/po'
make[7]: Entering directory `/usr/local/build/binutils/ld'
make[7]: Nothing to be done for `all-am'.
make[7]: Leaving directory `/usr/local/build/binutils/ld'
make[6]: Leaving directory `/usr/local/build/binutils/ld'
make[5]: Leaving directory `/usr/local/build/binutils/ld'
make[4]: Nothing to be done for `all-target'.
make[4]: Leaving directory `/usr/local/build/binutils'
make[3]: Leaving directory `/usr/local/build/binutils'
make[3]: Entering directory `/usr/local/build/gmp'
make  all-recursive
make[4]: Entering directory `/usr/local/build/gmp'
Making all in tests
make[5]: Entering directory `/usr/local/build/gmp/tests'
Making all in .
make[6]: Entering directory `/usr/local/build/gmp/tests'
make[6]: Nothing to be done for `all-am'.
make[6]: Leaving directory `/usr/local/build/gmp/tests'
Making all in devel
make[6]: Entering directory `/usr/local/build/gmp/tests/devel'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/tests/devel'
Making all in mpn
make[6]: Entering directory `/usr/local/build/gmp/tests/mpn'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/tests/mpn'
Making all in mpz
make[6]: Entering directory `/usr/local/build/gmp/tests/mpz'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/tests/mpz'
Making all in mpq
make[6]: Entering directory `/usr/local/build/gmp/tests/mpq'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/tests/mpq'
Making all in mpf
make[6]: Entering directory `/usr/local/build/gmp/tests/mpf'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/tests/mpf'
Making all in rand
make[6]: Entering directory `/usr/local/build/gmp/tests/rand'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/tests/rand'
Making all in misc
make[6]: Entering directory `/usr/local/build/gmp/tests/misc'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/tests/misc'
Making all in cxx
make[6]: Entering directory `/usr/local/build/gmp/tests/cxx'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/tests/cxx'
Making all in mpbsd
make[6]: Entering directory `/usr/local/build/gmp/tests/mpbsd'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/tests/mpbsd'
make[5]: Leaving directory `/usr/local/build/gmp/tests'
Making all in mpn
make[5]: Entering directory `/usr/local/build/gmp/mpn'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/mpn'
Making all in mpz
make[5]: Entering directory `/usr/local/build/gmp/mpz'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/mpz'
Making all in mpq
make[5]: Entering directory `/usr/local/build/gmp/mpq'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/mpq'
Making all in mpf
make[5]: Entering directory `/usr/local/build/gmp/mpf'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/mpf'
Making all in printf
make[5]: Entering directory `/usr/local/build/gmp/printf'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/printf'
Making all in scanf
make[5]: Entering directory `/usr/local/build/gmp/scanf'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/scanf'
Making all in cxx
make[5]: Entering directory `/usr/local/build/gmp/cxx'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/cxx'
Making all in mpbsd
make[5]: Entering directory `/usr/local/build/gmp/mpbsd'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/mpbsd'
Making all in demos
make[5]: Entering directory `/usr/local/build/gmp/demos'
Making all in calc
make[6]: Entering directory `/usr/local/build/gmp/demos/calc'
make  all-am
make[7]: Entering directory `/usr/local/build/gmp/demos/calc'
make[7]: Nothing to be done for `all-am'.
make[7]: Leaving directory `/usr/local/build/gmp/demos/calc'
make[6]: Leaving directory `/usr/local/build/gmp/demos/calc'
Making all in expr
make[6]: Entering directory `/usr/local/build/gmp/demos/expr'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/demos/expr'
make[6]: Entering directory `/usr/local/build/gmp/demos'
make[6]: Nothing to be done for `all-am'.
make[6]: Leaving directory `/usr/local/build/gmp/demos'
make[5]: Leaving directory `/usr/local/build/gmp/demos'
Making all in tune
make[5]: Entering directory `/usr/local/build/gmp/tune'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/tune'
Making all in doc
make[5]: Entering directory `/usr/local/build/gmp/doc'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/doc'
make[5]: Entering directory `/usr/local/build/gmp'
make[5]: Nothing to be done for `all-am'.
make[5]: Leaving directory `/usr/local/build/gmp'
make[4]: Leaving directory `/usr/local/build/gmp'
make[3]: Leaving directory `/usr/local/build/gmp'
make[3]: Entering directory `/usr/local/build/mpfr'
Making all in tests
make[4]: Entering directory `/usr/local/build/mpfr/tests'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/build/mpfr/tests'
make[4]: Entering directory `/usr/local/build/mpfr'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/usr/local/build/mpfr'
make[3]: Leaving directory `/usr/local/build/mpfr'
make[3]: Entering directory `/usr/local/build/build-i686-pc-linux-gnu/libiberty'
make[4]: Entering directory `/usr/local/build/build-i686-pc-linux-gnu/libiberty/testsuite'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/build/build-i686-pc-linux-gnu/libiberty/testsuite'
make[3]: Leaving directory `/usr/local/build/build-i686-pc-linux-gnu/libiberty'
make[3]: Entering directory `/usr/local/build/build-i686-pc-linux-gnu/fixincludes'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/build/build-i686-pc-linux-gnu/fixincludes'
make[3]: Entering directory `/usr/local/build/zlib'
true "AR_FLAGS=rc" "CC_FOR_BUILD=gcc" "CFLAGS=-g -fkeep-inline-functions" "CXXFLAGS=-g -O2" "CFLAGS_FOR_BUILD=-g -O2" "CFLAGS_FOR_TARGET=-O2 -g -g -O2  " "INSTALL=/usr/bin/install -c" "INSTALL_DATA=/usr/bin/install -c -m 644" "INSTALL_PROGRAM=/usr/bin/install -c" "INSTALL_SCRIPT=/usr/bin/install -c" "LDFLAGS=" "LIBCFLAGS=-g -fkeep-inline-functions" "LIBCFLAGS_FOR_TARGET=-O2 -g -g -O2  " "MAKE=make" "MAKEINFO=makeinfo --split-size=5000000 --split-size=5000000 --split-size=5000000 " "PICFLAG=" "PICFLAG_FOR_TARGET=" "SHELL=/bin/sh" "EXPECT=expect" "RUNTEST=runtest" "RUNTESTFLAGS=" "exec_prefix=/usr/local" "infodir=/usr/local/info" "libdir=/usr/local/lib" "prefix=/usr/local" "tooldir=/usr/local/i686-pc-linux-gnu" "AR=ar" "AS=as" "CC=gcc" "CXX=g++" "LD=/usr/lib/gcc-lib/i586-suse-linux/3.3.3/../../../../i586-suse-linux/bin/ld" "LIBCFLAGS=-g -fkeep-inline-functions" "NM=nm" "PICFLAG=" "RANLIB=ranlib" "DESTDIR=" DO=all multi-do # make
make[3]: Leaving directory `/usr/local/build/zlib'
make[3]: Entering directory `/usr/local/build/libcpp'
test -f config.h || (rm -f stamp-h1 && make stamp-h1)
make[3]: Leaving directory `/usr/local/build/libcpp'
make[3]: Entering directory `/usr/local/build/libdecnumber'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/build/libdecnumber'
make[3]: Entering directory `/usr/local/build/gcc'
rm -f jvgenmain
gcc   -g -fkeep-inline-functions -DIN_GCC   -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -fno-common   -DHAVE_CONFIG_H  -o jvgenmain java/jvgenmain.o java/mangle_name.o errors.o intl.o ../libcpp/libcpp.a   ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a
make[3]: Leaving directory `/usr/local/build/gcc'

collect2: ld returned 1 exit status
make[3]: *** [jvgenmain] Error 1
make[3]: Leaving directory `/usr/local/build/gcc'
make[2]: *** [all-stage1-gcc] Error 2
make[2]: Leaving directory `/usr/local/build'
make[1]: *** [stage1-bubble] Error 2
make[1]: Leaving directory `/usr/local/build'
make: *** [all] Error 2

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Fwd: Building gcc-4.3.2 using gcc-g++3.3.3
@ 2009-01-29 21:55 Franklyn Simon
  0 siblings, 0 replies; 2+ messages in thread
From: Franklyn Simon @ 2009-01-29 21:55 UTC (permalink / raw)
  To: Kai Ruottu, gcc-help

[-- Attachment #1: Type: text/plain, Size: 5380 bytes --]

Forget attachments

>Date: Thu, 29 Jan 2009 16:53:04 -0500
>To: Kai Ruottu <kai.ruottu@wippies.com>, gcc-help@gcc.gnu.org
>From: Franklyn Simon <franklynsimon@bellsouth.net>
>Subject: Building gcc-4.3.2 using gcc-g++3.3.3
>
>I have SUSE Linux Enterprise Server 9 (SLES9) 
>with gcc-g++3.3.3 and make3.80-184.1 installed 
>on i686-pc.  I am trying to migrate from IRIX6.2 
>OS to Linux.  However, I am having several 
>problems with compiling the source codes.  Some 
>of the problems are with c++ stream as well as 
>return a char* to the calling 
>function.  Therefore, I am trying to install 
>gcc-4.3.2 with the upgrade gcc-g++ compiler, but 
>I am still using the current and old gcc with 
>make3.80-184.1 to build gcc-4.3.2.  I cannot 
>trust this compiler, and I am wondering if this 
>is the problem I might be having building gcc-4.3.2.
>
>I have run out of options in building 
>gcc-4.3.2.  I cannot configure and build 
>gcc-4.3.2, gmp-4.2.4, and mpfr-2.3.2 
>together.  I have to configure and build gmp and 
>mpfr separately to get the library and include 
>files to be generated.  Also, depending on where 
>I build them, I might have to do a make 
>distclean when it is time to build 
>gcc-4.3.2.  The attached is the configuration 
>files and make –j1.  I have tried all the 
>suggestions to build gcc-4.3.2 from gcc help as 
>well as following the directions from 
><http://gcc.gnu.org/install>http://gcc.gnu.org/install
>Also just before make failed, there were several 
>warning message: duplicate const
>
>
>
>Do you have any suggestions to help me?
>
>Thanks
>
>
>At 07:05 AM 1/26/2009, you wrote:
>>Franklyn Simon wrote:
>>
>>>Here is the attached config.log file and output from make -j1
>>>It appears that configuration was okay, but I cannot get to build.
>>>After looking at the config.log file its 
>>>indicates the following two possible 
>>>errors.  I do not know how to go about solving then
>>>Please help. I am using gcc-g++3.3.3 compiler 
>>>and SLES9 on hp pavilion a305w (i686-pc).  I am going a native build
>>
>>Your log tells that you aren't trying to build "only gcc-4.3.2" but to
>>try some kind of "everything at the same time" : binutils, gmp, GCC,...
>>and your build crashing during the 'gmp' build...
>>
>>Traditionally these things have been splitted into smaller pieces so the
>>GNU binutils, the GCC, the 'gmp' etc. sources are 'stand-alone' with
>>their own 'bfd', 'libiberty' etc. subdirs.  But there can be those
>>"combined GNU sources" like those GNUpro ones from Red Hat and in them
>>builds like yours should work. But in them many people have worked in
>>order to get things to work together.
>>
>>Ok, something is wrong in your 'gmp' source install :
>>
>>----------- clip -------------
>>make[3]: Leaving directory `/usr/local/gcc-4.3.2/binutils'
>>Configuring stage 1 in ./gmp
>>configure: loading cache ./config.cache
>>checking build system type... i686-pc-linux-gnu
>>checking host system type... none-pc-linux-gnu
>>checking for a BSD-compatible install... /usr/bin/install -c
>>checking whether build environment is sane... yes
>>checking for gawk... gawk
>>checking whether make sets $(MAKE)... yes
>>make[2]: Leaving directory `/usr/local/gcc-4.3.2'
>>make[1]: Leaving directory `/usr/local/gcc-4.3.2'
>>
>>configure: error: source directory already configured; run "make
>>distclean" there first
>>make[2]: *** [configure-stage1-gmp] Error 1
>>----------- clip -------------
>>
>>The GCC's "Prerequisites" say that the 'gmp-*' and 'mpfr-*' sources
>>could be installed as 'gmp' and 'mpfr' subdirs into the GCC sources.
>>Did you really do this?  Not for instance installing them being
>>"parallel with the GCC sources" ?
>>
>>Building binutils then happens "parallel", totally separately from
>>the GCC sources so one can have '$src/gcc-4.3.2' and
>>'$src/binutils-2.19' but '$src/gcc-4.3.2/gmp' and '$src/gcc-4.3.2/mpfr'
>>for the 'gmp-*' and 'mpfr-*' sources...
>>
>>The $build directory should be a separate one from the sources...
>>Where are your GCC sources? They MUST NOT be in '/usr/local' ! Using
>>that as your chosen '$build' directory sounds really weird. Something
>>like :
>>
>>   /usr/local/src
>>
>>for the unpacked srcs like '/usr/local/src/gcc-4.3.2',
>>'/usr/local/src/gmp-4.2.1', '/usr/local/src/mpfr-2.3.2' etc. would
>>be more "normal". After unpacking the srcs there a suitable $build
>>directory could be the :
>>
>>  /usr/local/build
>>
>>and configuring & building there... Just as the "Install" Prerequisites
>>are telling, one could then have in '/usr/local/src/gcc-4.3.2' :
>>
>>    gmp -> ../gmp-4.2.1
>>    mpfr -> ../mpfr-2.3.2
>>
>>and both 'gmp' and 'mpfr' being built during the GCC build....
>>
>>The '/usr/local' is quite like '/usr' in a Linux system, aimed for
>>local-made apps ('bin'), libraries ('lib'), headers ('include') etc.
>>Anything might happen if one thinks that it is not used for anything
>>in the system...  I myself use '/home/src' as the install place for
>>all kind of source distributions...
>>
>>I tried the "build 'gmp' and 'mpfr' during the gcc-4.3.2 build and
>>things seemed to work even in a $build != $host case (cross-compiling
>>also 'gmp' and 'mpfr' for the '$host' platform while producing GCC
>>binaries for that...

[-- Attachment #2: config.log --]
[-- Type: application/octet-stream, Size: 25956 bytes --]

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.59.  Invocation command line was

  $ /usr/local/src/gcc-4.3.2/configure --enable-languages=c,c++,java --enable-stage1-languages=all --disable-nls --with-long-double-128 --enable-threads=posix --enable-shared --enable-libgcj --with-gmp=/usr/local/src/gmp-4.2.4 --with-mpfr=/usr/local/src/mpfr-2.3.2

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

hostname = glory
uname -m = i686
uname -r = 2.6.5-7.97-default
uname -s = Linux
uname -v = #1 Fri Jul 2 14:21:59 UTC 2004

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

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

PATH: /gcc-4.3.2/gmp
PATH: /gcc-4.3.2/mpfr
PATH: /usr/local/gcc-4.3.2/gmp
PATH: /usr/local/texinfo-4.13/bin
PATH: /usr/sbin
PATH: /bin
PATH: /usr/bin
PATH: /sbin
PATH: /usr/X11R6/bin
PATH: /usr/lib/java/jre/bin
PATH: /u02/app/oracle/product/10.1.0/TestDB/bin
PATH: /u02/app/oracle/product/10.1.0/TestDB/dbs
PATH: /sbin
PATH: /usr/sbin


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

configure:1505: checking build system type
configure:1523: result: i686-pc-linux-gnu
configure:1558: checking host system type
configure:1572: result: i686-pc-linux-gnu
configure:1580: checking target system type
configure:1594: result: i686-pc-linux-gnu
configure:1637: checking for a BSD-compatible install
configure:1692: result: /usr/bin/install -c
configure:1703: checking whether ln works
configure:1725: result: yes
configure:1729: checking whether ln -s works
configure:1733: result: yes
configure:2885: checking for gcc
configure:2901: found /usr/bin/gcc
configure:2911: result: gcc
configure:3155: checking for C compiler version
configure:3158: gcc --version </dev/null >&5
gcc (GCC) 3.3.3 (SuSE Linux)
Copyright (C) 2003 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:3161: $? = 0
configure:3163: gcc -v </dev/null >&5
Reading specs from /usr/lib/gcc-lib/i586-suse-linux/3.3.3/specs
Configured with: ../configure --enable-threads=posix --prefix=/usr --with-local-prefix=/usr/local --infodir=/usr/share/info --mandir=/usr/share/man --enable-languages=c,c++,f77,objc,java,ada --disable-checking --libdir=/usr/lib --enable-libgcj --with-gxx-include-dir=/usr/include/g++ --with-slibdir=/lib --with-system-zlib --enable-shared --enable-__cxa_atexit i586-suse-linux
Thread model: posix
gcc version 3.3.3 (SuSE Linux)
configure:3166: $? = 0
configure:3168: gcc -V </dev/null >&5
gcc: `-V' option must have argument
configure:3171: $? = 1
configure:3194: checking for C compiler default output file name
configure:3197: gcc    conftest.c  >&5
configure:3200: $? = 0
configure:3246: result: a.out
configure:3251: checking whether the C compiler works
configure:3257: ./a.out
configure:3260: $? = 0
configure:3277: result: yes
configure:3284: checking whether we are cross compiling
configure:3286: result: no
configure:3289: checking for suffix of executables
configure:3291: gcc -o conftest    conftest.c  >&5
configure:3294: $? = 0
configure:3319: result: 
configure:3325: checking for suffix of object files
configure:3346: gcc -c   conftest.c >&5
configure:3349: $? = 0
configure:3371: result: o
configure:3375: checking whether we are using the GNU C compiler
configure:3399: gcc -c   conftest.c >&5
configure:3405: $? = 0
configure:3409: test -z 
			 || test ! -s conftest.err
configure:3412: $? = 0
configure:3415: test -s conftest.o
configure:3418: $? = 0
configure:3431: result: yes
configure:3437: checking whether gcc accepts -g
configure:3458: gcc -c -g  conftest.c >&5
configure:3464: $? = 0
configure:3468: test -z 
			 || test ! -s conftest.err
configure:3471: $? = 0
configure:3474: test -s conftest.o
configure:3477: $? = 0
configure:3488: result: yes
configure:3505: checking for gcc option to accept ANSI C
configure:3575: gcc  -c -g -O2  conftest.c >&5
configure:3581: $? = 0
configure:3585: test -z 
			 || test ! -s conftest.err
configure:3588: $? = 0
configure:3591: test -s conftest.o
configure:3594: $? = 0
configure:3612: result: none needed
configure:3630: gcc -c -g -O2  conftest.c >&5
conftest.c:2: error: parse error before "me"
configure:3636: $? = 1
configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
configure:3821: checking for g++
configure:3837: found /usr/bin/g++
configure:3847: result: g++
configure:3863: checking for C++ compiler version
configure:3866: g++ --version </dev/null >&5
g++ (GCC) 3.3.3 (SuSE Linux)
Copyright (C) 2003 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:3869: $? = 0
configure:3871: g++ -v </dev/null >&5
Reading specs from /usr/lib/gcc-lib/i586-suse-linux/3.3.3/specs
Configured with: ../configure --enable-threads=posix --prefix=/usr --with-local-prefix=/usr/local --infodir=/usr/share/info --mandir=/usr/share/man --enable-languages=c,c++,f77,objc,java,ada --disable-checking --libdir=/usr/lib --enable-libgcj --with-gxx-include-dir=/usr/include/g++ --with-slibdir=/lib --with-system-zlib --enable-shared --enable-__cxa_atexit i586-suse-linux
Thread model: posix
gcc version 3.3.3 (SuSE Linux)
configure:3874: $? = 0
configure:3876: g++ -V </dev/null >&5
g++: `-V' option must have argument
configure:3879: $? = 1
configure:3882: checking whether we are using the GNU C++ compiler
configure:3906: g++ -c   conftest.cc >&5
configure:3912: $? = 0
configure:3916: test -z 
			 || test ! -s conftest.err
configure:3919: $? = 0
configure:3922: test -s conftest.o
configure:3925: $? = 0
configure:3938: result: yes
configure:3944: checking whether g++ accepts -g
configure:3965: g++ -c -g  conftest.cc >&5
configure:3971: $? = 0
configure:3975: test -z 
			 || test ! -s conftest.err
configure:3978: $? = 0
configure:3981: test -s conftest.o
configure:3984: $? = 0
configure:3995: result: yes
configure:4037: g++ -c -g -O2  conftest.cc >&5
configure:4043: $? = 0
configure:4047: test -z 
			 || test ! -s conftest.err
configure:4050: $? = 0
configure:4053: test -s conftest.o
configure:4056: $? = 0
configure:4082: g++ -c -g -O2  conftest.cc >&5
conftest.cc: In function `int main()':
conftest.cc:13: error: `exit' undeclared (first use this function)
conftest.cc:13: error: (Each undeclared identifier is reported only once for 
   each function it appears in.)
configure:4088: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| exit (42);
|   ;
|   return 0;
| }
configure:4037: g++ -c -g -O2  conftest.cc >&5
configure:4043: $? = 0
configure:4047: test -z 
			 || test ! -s conftest.err
configure:4050: $? = 0
configure:4053: test -s conftest.o
configure:4056: $? = 0
configure:4082: g++ -c -g -O2  conftest.cc >&5
configure:4088: $? = 0
configure:4092: test -z 
			 || test ! -s conftest.err
configure:4095: $? = 0
configure:4098: test -s conftest.o
configure:4101: $? = 0
configure:4188: checking for gnatbind
configure:4215: result: no
configure:4268: checking for gnatmake
configure:4295: result: no
configure:4307: checking whether compiler driver understands Ada
configure:4330: result: no
configure:4339: checking how to compare bootstrapped objects
configure:4364: result: cmp --ignore-initial=16 $$f1 $$f2
configure:4484: checking for correct version of gmp.h
configure:4507: gcc -c -g -O2 -I/usr/local/src/gmp-4.2.4/include -I/usr/local/src/mpfr-2.3.2/include  conftest.c >&5
configure:4513: $? = 0
configure:4517: test -z 
			 || test ! -s conftest.err
configure:4520: $? = 0
configure:4523: test -s conftest.o
configure:4526: $? = 0
configure:4528: result: yes
configure:4542: checking for correct version of mpfr.h
configure:4573: gcc -o conftest -g -O2 -I/usr/local/src/gmp-4.2.4/include -I/usr/local/src/mpfr-2.3.2/include   conftest.c  -L/usr/local/src/gmp-4.2.4/lib -L/usr/local/src/mpfr-2.3.2/lib -lmpfr -lgmp >&5
configure:4579: $? = 0
configure:4583: test -z 
			 || test ! -s conftest.err
configure:4586: $? = 0
configure:4589: test -s conftest
configure:4592: $? = 0
configure:4616: gcc -o conftest -g -O2 -I/usr/local/src/gmp-4.2.4/include -I/usr/local/src/mpfr-2.3.2/include   conftest.c  -L/usr/local/src/gmp-4.2.4/lib -L/usr/local/src/mpfr-2.3.2/lib -lmpfr -lgmp >&5
configure:4622: $? = 0
configure:4626: test -z 
			 || test ! -s conftest.err
configure:4629: $? = 0
configure:4632: test -s conftest
configure:4635: $? = 0
configure:4637: result: yes
configure:5971: checking for bison
configure:6000: result: no
configure:5971: checking for byacc
configure:6000: result: no
configure:5971: checking for yacc
configure:6000: result: no
configure:6017: checking for bison
configure:6046: result: no
configure:6062: checking for gm4
configure:6091: result: no
configure:6062: checking for gnum4
configure:6091: result: no
configure:6062: checking for m4
configure:6078: found /usr/bin/m4
configure:6088: result: m4
configure:6107: checking for flex
configure:6136: result: no
configure:6107: checking for lex
configure:6136: result: no
configure:6153: checking for flex
configure:6182: result: no
configure:6198: checking for makeinfo
configure:6214: found /usr/local/texinfo-4.13/bin/makeinfo
configure:6224: result: makeinfo
configure:6257: checking for expect
configure:6286: result: no
configure:6304: checking for runtest
configure:6333: result: no
configure:6443: checking for ar
configure:6459: found /usr/bin/ar
configure:6469: result: ar
configure:6578: checking for as
configure:6594: found /usr/bin/as
configure:6604: result: as
configure:6713: checking for dlltool
configure:6742: result: no
configure:6771: checking for ld
configure:6797: result: /usr/lib/gcc-lib/i586-suse-linux/3.3.3/../../../../i586-suse-linux/bin/ld
configure:6983: checking for lipo
configure:7012: result: no
configure:7118: checking for nm
configure:7134: found /usr/bin/nm
configure:7144: result: nm
configure:7253: checking for ranlib
configure:7269: found /usr/bin/ranlib
configure:7279: result: ranlib
configure:7383: checking for strip
configure:7399: found /usr/bin/strip
configure:7409: result: strip
configure:7513: checking for windres
configure:7542: result: no
configure:7648: checking for windmc
configure:7677: result: no
configure:7783: checking for objcopy
configure:7799: found /usr/bin/objcopy
configure:7809: result: objcopy
configure:7918: checking for objdump
configure:7934: found /usr/bin/objdump
configure:7944: result: objdump
configure:8092: checking for cc
configure:8108: found /usr/bin/cc
configure:8118: result: cc
configure:8247: checking for c++
configure:8263: found /usr/bin/c++
configure:8273: result: c++
configure:8402: checking for gcc
configure:8418: found /usr/bin/gcc
configure:8428: result: gcc
configure:8552: checking for gcj
configure:8568: found /usr/bin/gcj
configure:8578: result: gcj
configure:8707: checking for gfortran
configure:8736: result: no
configure:8796: checking for ar
configure:8829: result: no
configure:8941: checking for ar
configure:8957: found /usr/bin/ar
configure:8967: result: ar
configure:9019: checking for as
configure:9052: result: no
configure:9164: checking for as
configure:9180: found /usr/bin/as
configure:9190: result: as
configure:9242: checking for dlltool
configure:9275: result: no
configure:9387: checking for dlltool
configure:9416: result: no
configure:9465: checking for ld
configure:9498: result: no
configure:9610: checking for ld
configure:9626: found /usr/bin/ld
configure:9636: result: ld
configure:9688: checking for lipo
configure:9721: result: no
configure:9833: checking for lipo
configure:9862: result: no
configure:9911: checking for nm
configure:9944: result: no
configure:10056: checking for nm
configure:10072: found /usr/bin/nm
configure:10082: result: nm
configure:10134: checking for objdump
configure:10167: result: no
configure:10279: checking for objdump
configure:10295: found /usr/bin/objdump
configure:10305: result: objdump
configure:10357: checking for ranlib
configure:10390: result: no
configure:10502: checking for ranlib
configure:10518: found /usr/bin/ranlib
configure:10528: result: ranlib
configure:10580: checking for strip
configure:10613: result: no
configure:10725: checking for strip
configure:10741: found /usr/bin/strip
configure:10751: result: strip
configure:10803: checking for windres
configure:10836: result: no
configure:10948: checking for windres
configure:10977: result: no
configure:11026: checking for windmc
configure:11059: result: no
configure:11171: checking for windmc
configure:11200: result: no
configure:11227: checking where to find the target ar
configure:11250: result: just compiled
configure:11269: checking where to find the target as
configure:11302: result: host tool
configure:11311: checking where to find the target cc
configure:11334: result: just compiled
configure:11353: checking where to find the target c++
configure:11379: result: just compiled
configure:11398: checking where to find the target c++ for libstdc++
configure:11424: result: just compiled
configure:11443: checking where to find the target dlltool
configure:11466: result: just compiled
configure:11485: checking where to find the target gcc
configure:11508: result: just compiled
configure:11527: checking where to find the target gcj
configure:11553: result: just compiled
configure:11572: checking where to find the target gfortran
configure:11608: result: host tool
configure:11617: checking where to find the target ld
configure:11650: result: host tool
configure:11659: checking where to find the target lipo
configure:11681: result: host tool
configure:11690: checking where to find the target nm
configure:11713: result: just compiled
configure:11732: checking where to find the target objdump
configure:11755: result: just compiled
configure:11774: checking where to find the target ranlib
configure:11797: result: just compiled
configure:11816: checking where to find the target strip
configure:11839: result: just compiled
configure:11858: checking where to find the target windres
configure:11881: result: just compiled
configure:11900: checking where to find the target windmc
configure:11923: result: just compiled
configure:11970: checking whether to enable maintainer-specific portions of Makefiles
configure:11979: result: no
configure:12012: checking whether -fkeep-inline-functions is supported
configure:12034: gcc -c -g -O2 -fkeep-inline-functions  conftest.c >&5
configure:12040: $? = 0
configure:12044: test -z 
			 || test ! -s conftest.err
configure:12047: $? = 0
configure:12050: test -s conftest.o
configure:12053: $? = 0
configure:12055: result: yes
configure:12272: creating ./config.status

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

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

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

on glory

config.status:762: creating Makefile

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

ac_cv_build=i686-pc-linux-gnu
ac_cv_build_alias=i686-pc-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_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_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_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_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_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_exeext=
ac_cv_host=i686-pc-linux-gnu
ac_cv_host_alias=i686-pc-linux-gnu
ac_cv_objext=o
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_CC_FOR_TARGET=cc
ac_cv_prog_CXX_FOR_TARGET=c++
ac_cv_prog_GCC_FOR_TARGET=gcc
ac_cv_prog_GCJ_FOR_TARGET=gcj
ac_cv_prog_LD=/usr/lib/gcc-lib/i586-suse-linux/3.3.3/../../../../i586-suse-linux/bin/ld
ac_cv_prog_LD_FOR_TARGET=ld
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_STRIP=strip
ac_cv_prog_STRIP_FOR_TARGET=strip
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_GNATBIND=no
ac_cv_prog_ac_ct_GNATMAKE=no
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=
ac_cv_prog_cxx_g=yes
ac_cv_target=i686-pc-linux-gnu
ac_cv_target_alias=i686-pc-linux-gnu
acx_cv_cc_gcc_supports_ada=no
acx_cv_prog_LN=ln
gcc_cv_prog_cmp_skip='cmp --ignore-initial=16 $$f1 $$f2'
gcc_cv_tool_dirs=/usr/local/libexec/gcc/i686-pc-linux-gnu/4.3.2:/usr/local/libexec/gcc/i686-pc-linux-gnu:/usr/lib/gcc/i686-pc-linux-gnu/4.3.2:/usr/lib/gcc/i686-pc-linux-gnu:/usr/local/i686-pc-linux-gnu/bin/i686-pc-linux-gnu/4.3.2:/usr/local/i686-pc-linux-gnu/bin:
gcc_cv_tool_prefix=/usr/local

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

AR='ar'
AR_FOR_BUILD='$(AR)'
AR_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/ar'
AS='as'
AS_FOR_BUILD='$(AS)'
AS_FOR_TARGET='$(AS)'
BISON='/usr/local/src/gcc-4.3.2/missing bison'
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'
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'
CXX_FOR_BUILD='$(CXX)'
CXX_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/g++ -B$$r/$(HOST_SUBDIR)/gcc/ -nostdinc++ `test ! -f $$r/$(TARGET_SUBDIR)/libstdc++-v3/scripts/testsuite_flags || $(SHELL) $$r/$(TARGET_SUBDIR)/libstdc++-v3/scripts/testsuite_flags --build-includes` -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=\"\" '
DLLTOOL='dlltool'
DLLTOOL_FOR_BUILD='$(DLLTOOL)'
DLLTOOL_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/dlltool'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EXEEXT=''
EXPECT='expect'
FLAGS_FOR_TARGET=' -B$(build_tooldir)/bin/ -B$(build_tooldir)/lib/ -isystem $(build_tooldir)/include -isystem $(build_tooldir)/sys-include'
FLEX='/usr/local/src/gcc-4.3.2/missing flex'
GCC_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/xgcc -B$$r/$(HOST_SUBDIR)/gcc/'
GCJ_FOR_BUILD='$(GCJ)'
GCJ_FOR_TARGET='$$r/$(HOST_SUBDIR)/gcc/gcj -B$$r/$(HOST_SUBDIR)/gcc/'
GDB_TK=''
GFORTRAN_FOR_BUILD='$(GFORTRAN)'
GFORTRAN_FOR_TARGET='$(GFORTRAN)'
GNATBIND='no'
GNATMAKE='no'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_GDB_TK=''
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
LD='/usr/lib/gcc-lib/i586-suse-linux/3.3.3/../../../../i586-suse-linux/bin/ld'
LDFLAGS=''
LDFLAGS_FOR_BUILD=''
LD_FOR_BUILD='$(LD)'
LD_FOR_TARGET='$(LD)'
LEX='/usr/local/src/gcc-4.3.2/missing 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='$$r/$(HOST_SUBDIR)/binutils/nm-new'
OBJCOPY='objcopy'
OBJDUMP='objdump'
OBJDUMP_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/objdump'
OBJEXT='o'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
RANLIB='ranlib'
RANLIB_FOR_BUILD='$(RANLIB)'
RANLIB_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/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'
RPATH_ENVVAR='LD_LIBRARY_PATH'
RUNTEST='runtest'
SHELL='/bin/sh'
STRIP='strip'
STRIP_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/strip'
SYSROOT_CFLAGS_FOR_TARGET=''
TOPLEVEL_CONFIGURE_ARGUMENTS='/usr/local/src/gcc-4.3.2/configure --enable-languages=c,c++,java --enable-stage1-languages=all --disable-nls --with-long-double-128 --enable-threads=posix --enable-shared --enable-libgcj --with-gmp=/usr/local/src/gmp-4.2.4 --with-mpfr=/usr/local/src/mpfr-2.3.2'
WINDMC='windmc'
WINDMC_FOR_BUILD='$(WINDMC)'
WINDMC_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/windmc'
WINDRES='windres'
WINDRES_FOR_BUILD='$(WINDRES)'
WINDRES_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/windres'
YACC='/usr/local/src/gcc-4.3.2/missing bison -y'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_GNATBIND='no'
ac_ct_GNATMAKE='no'
bindir='${exec_prefix}/bin'
build='i686-pc-linux-gnu'
build_alias=''
build_configargs='--cache-file=../config.cache '--enable-stage1-languages=all' '--disable-nls' '--with-long-double-128' '--enable-threads=posix' '--enable-shared' '--enable-libgcj' '--with-gmp=/usr/local/src/gmp-4.2.4' '--with-mpfr=/usr/local/src/mpfr-2.3.2' '--enable-languages=c,c++,java' --program-transform-name='s,y,y,''
build_configdirs=' libiberty fixincludes'
build_cpu='i686'
build_libsubdir='build-i686-pc-linux-gnu'
build_noncanonical='i686-pc-linux-gnu'
build_os='linux-gnu'
build_subdir='build-i686-pc-linux-gnu'
build_tooldir='${exec_prefix}/i686-pc-linux-gnu'
build_vendor='pc'
config_shell='/bin/sh'
configdirs=' intl libiberty zlib libcpp libdecnumber gmp mpfr binutils fixincludes gcc'
datadir='${prefix}/share'
datarootdir='${prefix}/share'
do_compare='cmp --ignore-initial=16 $$f1 $$f2'
docdir='${datarootdir}/doc'
exec_prefix='${prefix}'
gmpinc='-I/usr/local/src/gmp-4.2.4/include -I/usr/local/src/mpfr-2.3.2/include'
gmplibs='-L/usr/local/src/gmp-4.2.4/lib -L/usr/local/src/mpfr-2.3.2/lib -lmpfr -lgmp'
host='i686-pc-linux-gnu'
host_alias=''
host_configargs='--cache-file=./config.cache  '--enable-stage1-languages=all' '--disable-nls' '--with-long-double-128' '--enable-threads=posix' '--enable-shared' '--enable-libgcj' '--with-gmp=/usr/local/src/gmp-4.2.4' '--with-mpfr=/usr/local/src/mpfr-2.3.2' '--enable-languages=c,c++,java' --program-transform-name='s,y,y,''
host_cpu='i686'
host_noncanonical='i686-pc-linux-gnu'
host_os='linux-gnu'
host_subdir='.'
host_vendor='pc'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${prefix}/info'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='${prefix}/var'
mandir='${prefix}/man'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr/local'
program_transform_name='s,y,y,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
stage1_cflags='-g -fkeep-inline-functions'
stage1_checking='--enable-checking=yes,types'
stage1_languages='c,c++,java'
stage2_werror_flag=''
sysconfdir='${prefix}/etc'
target='i686-pc-linux-gnu'
target_alias=''
target_configargs='--cache-file=./config.cache --enable-multilib '--enable-stage1-languages=all' '--disable-nls' '--with-long-double-128' '--enable-threads=posix' '--enable-shared' '--enable-libgcj' '--with-gmp=/usr/local/src/gmp-4.2.4' '--with-mpfr=/usr/local/src/mpfr-2.3.2' '--enable-languages=c,c++,java' --program-transform-name='s,y,y,''
target_cpu='i686'
target_noncanonical='i686-pc-linux-gnu'
target_os='linux-gnu'
target_subdir='i686-pc-linux-gnu'
target_vendor='pc'
tooldir='${exec_prefix}/i686-pc-linux-gnu'

## ------------- ##
## Output files. ##
## ------------- ##

alphaieee_frag='/dev/null'
host_makefile_frag='/usr/local/src/gcc-4.3.2/config/mh-x86omitfp'
ospace_frag='/dev/null'
serialization_dependencies='serdep.tmp'
target_makefile_frag='/usr/local/src/gcc-4.3.2/config/mt-gnu'

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

#define PACKAGE_BUGREPORT ""
#define PACKAGE_NAME ""
#define PACKAGE_STRING ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#endif
#ifdef __cplusplus
extern "C" void std::exit (int) throw (); using std::exit;

configure: exit 0

[-- Attachment #3: makej1.log --]
[-- Type: application/octet-stream, Size: 16468 bytes --]

[ -f stage_final ] || echo stage3 > stage_final
make[1]: Entering directory `/usr/local/build'
make[2]: Entering directory `/usr/local/build'
make[3]: Entering directory `/usr/local/build'
rm -f stage_current
make[3]: Leaving directory `/usr/local/build'
make[2]: Leaving directory `/usr/local/build'
make[2]: Entering directory `/usr/local/build'
make[3]: Entering directory `/usr/local/build/libiberty'
make[4]: Entering directory `/usr/local/build/libiberty/testsuite'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/build/libiberty/testsuite'
make[3]: Leaving directory `/usr/local/build/libiberty'
make[3]: Entering directory `/usr/local/build/intl'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/build/intl'
make[3]: Entering directory `/usr/local/build/binutils'
make[4]: Entering directory `/usr/local/build/binutils'
make[5]: Entering directory `/usr/local/build/binutils/libiberty'
make[6]: Entering directory `/usr/local/build/binutils/libiberty/testsuite'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/binutils/libiberty/testsuite'
make[5]: Leaving directory `/usr/local/build/binutils/libiberty'
make[5]: Entering directory `/usr/local/build/binutils/intl'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/binutils/intl'
make[5]: Entering directory `/usr/local/build/binutils/bfd'
Making info in doc
make[6]: Entering directory `/usr/local/build/binutils/bfd/doc'
make[6]: Nothing to be done for `info'.
make[6]: Leaving directory `/usr/local/build/binutils/bfd/doc'
Making info in po
make[6]: Entering directory `/usr/local/build/binutils/bfd/po'
make[6]: Nothing to be done for `info'.
make[6]: Leaving directory `/usr/local/build/binutils/bfd/po'
make[6]: Entering directory `/usr/local/build/binutils/bfd'
make[6]: Nothing to be done for `info-am'.
make[6]: Leaving directory `/usr/local/build/binutils/bfd'
make  all-recursive
make[6]: Entering directory `/usr/local/build/binutils/bfd'
Making all in doc
make[7]: Entering directory `/usr/local/build/binutils/bfd/doc'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/usr/local/build/binutils/bfd/doc'
Making all in po
make[7]: Entering directory `/usr/local/build/binutils/bfd/po'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/usr/local/build/binutils/bfd/po'
make[7]: Entering directory `/usr/local/build/binutils/bfd'
make[7]: Nothing to be done for `all-am'.
make[7]: Leaving directory `/usr/local/build/binutils/bfd'
make[6]: Leaving directory `/usr/local/build/binutils/bfd'
make[5]: Leaving directory `/usr/local/build/binutils/bfd'
make[5]: Entering directory `/usr/local/build/binutils/opcodes'
make  all-recursive
make[6]: Entering directory `/usr/local/build/binutils/opcodes'
Making all in po
make[7]: Entering directory `/usr/local/build/binutils/opcodes/po'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/usr/local/build/binutils/opcodes/po'
make[7]: Entering directory `/usr/local/build/binutils/opcodes'
make[7]: Nothing to be done for `all-am'.
make[7]: Leaving directory `/usr/local/build/binutils/opcodes'
make[6]: Leaving directory `/usr/local/build/binutils/opcodes'
make[5]: Leaving directory `/usr/local/build/binutils/opcodes'
make[5]: Entering directory `/usr/local/build/binutils/binutils'
Making info in doc
make[6]: Entering directory `/usr/local/build/binutils/binutils/doc'
make[6]: Nothing to be done for `info'.
make[6]: Leaving directory `/usr/local/build/binutils/binutils/doc'
Making info in po
make[6]: Entering directory `/usr/local/build/binutils/binutils/po'
make[6]: Nothing to be done for `info'.
make[6]: Leaving directory `/usr/local/build/binutils/binutils/po'
make[6]: Entering directory `/usr/local/build/binutils/binutils'
make[6]: Nothing to be done for `info-am'.
make[6]: Leaving directory `/usr/local/build/binutils/binutils'
make  all-recursive
make[6]: Entering directory `/usr/local/build/binutils/binutils'
Making all in doc
make[7]: Entering directory `/usr/local/build/binutils/binutils/doc'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/usr/local/build/binutils/binutils/doc'
Making all in po
make[7]: Entering directory `/usr/local/build/binutils/binutils/po'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/usr/local/build/binutils/binutils/po'
make[7]: Entering directory `/usr/local/build/binutils/binutils'
make[7]: Nothing to be done for `all-am'.
make[7]: Leaving directory `/usr/local/build/binutils/binutils'
make[6]: Leaving directory `/usr/local/build/binutils/binutils'
make[5]: Leaving directory `/usr/local/build/binutils/binutils'
make[5]: Entering directory `/usr/local/build/binutils/etc'
for f in standards.info configure.info; do \
  if test -f /usr/local/src/gcc-4.3.2/binutils/etc/`echo $f | sed -e 's/.info$/.texi/'`; then \
    if make "MAKEINFO=makeinfo --split-size=5000000 --split-size=5000000 --split-size=5000000 --split-size=5000000 --split-size=5000000" $f; then \
      true; \
    else \
      exit 1; \
    fi; \
  fi; \
done
make[6]: Entering directory `/usr/local/build/binutils/etc'
make[6]: `/usr/local/src/gcc-4.3.2/binutils/etc/standards.info' is up to date.
make[6]: Leaving directory `/usr/local/build/binutils/etc'
make[6]: Entering directory `/usr/local/build/binutils/etc'
make[6]: `/usr/local/src/gcc-4.3.2/binutils/etc/configure.info' is up to date.
make[6]: Leaving directory `/usr/local/build/binutils/etc'
make[5]: Leaving directory `/usr/local/build/binutils/etc'
make[5]: Entering directory `/usr/local/build/binutils/gas'
Making info in doc
make[6]: Entering directory `/usr/local/build/binutils/gas/doc'
make[6]: Nothing to be done for `info'.
make[6]: Leaving directory `/usr/local/build/binutils/gas/doc'
Making info in po
make[6]: Entering directory `/usr/local/build/binutils/gas/po'
make[6]: Nothing to be done for `info'.
make[6]: Leaving directory `/usr/local/build/binutils/gas/po'
make[6]: Entering directory `/usr/local/build/binutils/gas'
make[6]: Nothing to be done for `info-am'.
make[6]: Leaving directory `/usr/local/build/binutils/gas'
make  all-recursive
make[6]: Entering directory `/usr/local/build/binutils/gas'
Making all in doc
make[7]: Entering directory `/usr/local/build/binutils/gas/doc'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/usr/local/build/binutils/gas/doc'
Making all in po
make[7]: Entering directory `/usr/local/build/binutils/gas/po'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/usr/local/build/binutils/gas/po'
make[7]: Entering directory `/usr/local/build/binutils/gas'
make[7]: Nothing to be done for `all-am'.
make[7]: Leaving directory `/usr/local/build/binutils/gas'
make[6]: Leaving directory `/usr/local/build/binutils/gas'
make[5]: Leaving directory `/usr/local/build/binutils/gas'
make[5]: Entering directory `/usr/local/build/binutils/gprof'
make  all-recursive
make[6]: Entering directory `/usr/local/build/binutils/gprof'
Making all in po
make[7]: Entering directory `/usr/local/build/binutils/gprof/po'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/usr/local/build/binutils/gprof/po'
make[7]: Entering directory `/usr/local/build/binutils/gprof'
make[7]: Nothing to be done for `all-am'.
make[7]: Leaving directory `/usr/local/build/binutils/gprof'
make[6]: Leaving directory `/usr/local/build/binutils/gprof'
make[5]: Leaving directory `/usr/local/build/binutils/gprof'
make[5]: Entering directory `/usr/local/build/binutils/ld'
Making info in po
make[6]: Entering directory `/usr/local/build/binutils/ld/po'
make[6]: Nothing to be done for `info'.
make[6]: Leaving directory `/usr/local/build/binutils/ld/po'
make[6]: Entering directory `/usr/local/build/binutils/ld'
make[6]: Nothing to be done for `info-am'.
make[6]: Leaving directory `/usr/local/build/binutils/ld'
make  all-recursive
make[6]: Entering directory `/usr/local/build/binutils/ld'
Making all in po
make[7]: Entering directory `/usr/local/build/binutils/ld/po'
make[7]: Nothing to be done for `all'.
make[7]: Leaving directory `/usr/local/build/binutils/ld/po'
make[7]: Entering directory `/usr/local/build/binutils/ld'
make[7]: Nothing to be done for `all-am'.
make[7]: Leaving directory `/usr/local/build/binutils/ld'
make[6]: Leaving directory `/usr/local/build/binutils/ld'
make[5]: Leaving directory `/usr/local/build/binutils/ld'
make[4]: Nothing to be done for `all-target'.
make[4]: Leaving directory `/usr/local/build/binutils'
make[3]: Leaving directory `/usr/local/build/binutils'
make[3]: Entering directory `/usr/local/build/gmp'
make  all-recursive
make[4]: Entering directory `/usr/local/build/gmp'
Making all in tests
make[5]: Entering directory `/usr/local/build/gmp/tests'
Making all in .
make[6]: Entering directory `/usr/local/build/gmp/tests'
make[6]: Nothing to be done for `all-am'.
make[6]: Leaving directory `/usr/local/build/gmp/tests'
Making all in devel
make[6]: Entering directory `/usr/local/build/gmp/tests/devel'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/tests/devel'
Making all in mpn
make[6]: Entering directory `/usr/local/build/gmp/tests/mpn'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/tests/mpn'
Making all in mpz
make[6]: Entering directory `/usr/local/build/gmp/tests/mpz'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/tests/mpz'
Making all in mpq
make[6]: Entering directory `/usr/local/build/gmp/tests/mpq'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/tests/mpq'
Making all in mpf
make[6]: Entering directory `/usr/local/build/gmp/tests/mpf'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/tests/mpf'
Making all in rand
make[6]: Entering directory `/usr/local/build/gmp/tests/rand'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/tests/rand'
Making all in misc
make[6]: Entering directory `/usr/local/build/gmp/tests/misc'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/tests/misc'
Making all in cxx
make[6]: Entering directory `/usr/local/build/gmp/tests/cxx'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/tests/cxx'
Making all in mpbsd
make[6]: Entering directory `/usr/local/build/gmp/tests/mpbsd'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/tests/mpbsd'
make[5]: Leaving directory `/usr/local/build/gmp/tests'
Making all in mpn
make[5]: Entering directory `/usr/local/build/gmp/mpn'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/mpn'
Making all in mpz
make[5]: Entering directory `/usr/local/build/gmp/mpz'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/mpz'
Making all in mpq
make[5]: Entering directory `/usr/local/build/gmp/mpq'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/mpq'
Making all in mpf
make[5]: Entering directory `/usr/local/build/gmp/mpf'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/mpf'
Making all in printf
make[5]: Entering directory `/usr/local/build/gmp/printf'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/printf'
Making all in scanf
make[5]: Entering directory `/usr/local/build/gmp/scanf'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/scanf'
Making all in cxx
make[5]: Entering directory `/usr/local/build/gmp/cxx'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/cxx'
Making all in mpbsd
make[5]: Entering directory `/usr/local/build/gmp/mpbsd'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/mpbsd'
Making all in demos
make[5]: Entering directory `/usr/local/build/gmp/demos'
Making all in calc
make[6]: Entering directory `/usr/local/build/gmp/demos/calc'
make  all-am
make[7]: Entering directory `/usr/local/build/gmp/demos/calc'
make[7]: Nothing to be done for `all-am'.
make[7]: Leaving directory `/usr/local/build/gmp/demos/calc'
make[6]: Leaving directory `/usr/local/build/gmp/demos/calc'
Making all in expr
make[6]: Entering directory `/usr/local/build/gmp/demos/expr'
make[6]: Nothing to be done for `all'.
make[6]: Leaving directory `/usr/local/build/gmp/demos/expr'
make[6]: Entering directory `/usr/local/build/gmp/demos'
make[6]: Nothing to be done for `all-am'.
make[6]: Leaving directory `/usr/local/build/gmp/demos'
make[5]: Leaving directory `/usr/local/build/gmp/demos'
Making all in tune
make[5]: Entering directory `/usr/local/build/gmp/tune'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/tune'
Making all in doc
make[5]: Entering directory `/usr/local/build/gmp/doc'
make[5]: Nothing to be done for `all'.
make[5]: Leaving directory `/usr/local/build/gmp/doc'
make[5]: Entering directory `/usr/local/build/gmp'
make[5]: Nothing to be done for `all-am'.
make[5]: Leaving directory `/usr/local/build/gmp'
make[4]: Leaving directory `/usr/local/build/gmp'
make[3]: Leaving directory `/usr/local/build/gmp'
make[3]: Entering directory `/usr/local/build/mpfr'
Making all in tests
make[4]: Entering directory `/usr/local/build/mpfr/tests'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/build/mpfr/tests'
make[4]: Entering directory `/usr/local/build/mpfr'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/usr/local/build/mpfr'
make[3]: Leaving directory `/usr/local/build/mpfr'
make[3]: Entering directory `/usr/local/build/build-i686-pc-linux-gnu/libiberty'
make[4]: Entering directory `/usr/local/build/build-i686-pc-linux-gnu/libiberty/testsuite'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/build/build-i686-pc-linux-gnu/libiberty/testsuite'
make[3]: Leaving directory `/usr/local/build/build-i686-pc-linux-gnu/libiberty'
make[3]: Entering directory `/usr/local/build/build-i686-pc-linux-gnu/fixincludes'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/build/build-i686-pc-linux-gnu/fixincludes'
make[3]: Entering directory `/usr/local/build/zlib'
true "AR_FLAGS=rc" "CC_FOR_BUILD=gcc" "CFLAGS=-g -fkeep-inline-functions" "CXXFLAGS=-g -O2" "CFLAGS_FOR_BUILD=-g -O2" "CFLAGS_FOR_TARGET=-O2 -g -g -O2  " "INSTALL=/usr/bin/install -c" "INSTALL_DATA=/usr/bin/install -c -m 644" "INSTALL_PROGRAM=/usr/bin/install -c" "INSTALL_SCRIPT=/usr/bin/install -c" "LDFLAGS=" "LIBCFLAGS=-g -fkeep-inline-functions" "LIBCFLAGS_FOR_TARGET=-O2 -g -g -O2  " "MAKE=make" "MAKEINFO=makeinfo --split-size=5000000 --split-size=5000000 --split-size=5000000 " "PICFLAG=" "PICFLAG_FOR_TARGET=" "SHELL=/bin/sh" "EXPECT=expect" "RUNTEST=runtest" "RUNTESTFLAGS=" "exec_prefix=/usr/local" "infodir=/usr/local/info" "libdir=/usr/local/lib" "prefix=/usr/local" "tooldir=/usr/local/i686-pc-linux-gnu" "AR=ar" "AS=as" "CC=gcc" "CXX=g++" "LD=/usr/lib/gcc-lib/i586-suse-linux/3.3.3/../../../../i586-suse-linux/bin/ld" "LIBCFLAGS=-g -fkeep-inline-functions" "NM=nm" "PICFLAG=" "RANLIB=ranlib" "DESTDIR=" DO=all multi-do # make
make[3]: Leaving directory `/usr/local/build/zlib'
make[3]: Entering directory `/usr/local/build/libcpp'
test -f config.h || (rm -f stamp-h1 && make stamp-h1)
make[3]: Leaving directory `/usr/local/build/libcpp'
make[3]: Entering directory `/usr/local/build/libdecnumber'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/usr/local/build/libdecnumber'
make[3]: Entering directory `/usr/local/build/gcc'
rm -f jvgenmain
gcc   -g -fkeep-inline-functions -DIN_GCC   -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wmissing-format-attribute -fno-common   -DHAVE_CONFIG_H  -o jvgenmain java/jvgenmain.o java/mangle_name.o errors.o intl.o ../libcpp/libcpp.a   ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a
make[3]: Leaving directory `/usr/local/build/gcc'

collect2: ld returned 1 exit status
make[3]: *** [jvgenmain] Error 1
make[3]: Leaving directory `/usr/local/build/gcc'
make[2]: *** [all-stage1-gcc] Error 2
make[2]: Leaving directory `/usr/local/build'
make[1]: *** [stage1-bubble] Error 2
make[1]: Leaving directory `/usr/local/build'
make: *** [all] Error 2

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-01-29 21:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-01-29 21:55 Fwd: Building gcc-4.3.2 using gcc-g++3.3.3 Franklyn Simon
  -- strict thread matches above, loose matches on Subject: below --
2009-01-29 21:55 Franklyn Simon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).