Hi,

i am building binutils from source for cross compilation. I did this
successfully in the past but on my new fedora 8 i got errors.

------------

../configure --target=i686-mingw32 --prefix=/opt/cross-tools
make

-------------

WARNING: `makeinfo' is missing on your system.  You should only need it
if
         you modified a `.texi' or `.texinfo' file, or any other file
         indirectly affecting the aspect of the manual.  The spurious
         call might also be the consequence of using a buggy
`make' (AIX,
         DU, IRIX).  You might want to install the `Texinfo' package or
         the `GNU make' package.  Grab either from any GNU archive site.

--------------

binutils 2.18

fedora 8
makeinfo 4.11


--------------

After a little bit of try and error I found the problem
in configure.ac around line 2405:

    # For an installed makeinfo, we require it to be from texinfo 4.4 or
    # higher, else we use the "missing" dummy.
    if ${MAKEINFO} --version \
       | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[4-9]|[5-9])' >/dev/null
2>&1; then
      :
    else
      MAKEINFO="$MISSING makeinfo"
    fi
    ;;

this version grep works only for one digit minor version numbers.
output of `makeinfo --version`:

makeinfo (GNU texinfo) 4.11

Copyright (C) 2007 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
<http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

as a simple patch I suggest something like this:

egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[4-9]|4\.[1-3][0-9]|[5-9])'

I don't know what ([1-3][0-9]| is for, maybe it was a failed try to
catch exactly this.

Thanks

Christian

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

  $ ../configure --target=i686-mingw32 --prefix=/opt/cross-tools

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

hostname = darkc
uname -m = x86_64
uname -r = 2.6.23.1-49.fc8
uname -s = Linux
uname -v = #1 SMP Thu Nov 8 22:14:09 EST 2007

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

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

PATH: /usr/lib64/qt-3.3/bin
PATH: /usr/kerberos/bin
PATH: /usr/lib64/ccache
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/X11R6/bin
PATH: /home/darkc/bin


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

configure:1501: checking build system type
configure:1519: result: x86_64-unknown-linux-gnu
configure:1554: checking host system type
configure:1568: result: x86_64-unknown-linux-gnu
configure:1576: checking target system type
configure:1590: result: i686-pc-mingw32
configure:1633: checking for a BSD-compatible install
configure:1688: result: /usr/bin/install -c
configure:1699: checking whether ln works
configure:1721: result: yes
configure:1725: checking whether ln -s works
configure:1729: result: yes
configure:2820: checking for gcc
configure:2836: found /usr/lib64/ccache/gcc
configure:2846: result: gcc
configure:3090: checking for C compiler version
configure:3093: gcc --version </dev/null >&5
gcc (GCC) 4.1.2 20070925 (Red Hat 4.1.2-33)
Copyright (C) 2006 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:3096: $? = 0
configure:3098: gcc -v </dev/null >&5
Using built-in specs.
Target: x86_64-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --with-cpu=generic --host=x86_64-redhat-linux
Thread model: posix
gcc version 4.1.2 20070925 (Red Hat 4.1.2-33)
configure:3101: $? = 0
configure:3103: gcc -V </dev/null >&5
gcc: '-V' option must have argument
configure:3106: $? = 1
configure:3129: checking for C compiler default output file name
configure:3132: gcc    conftest.c  >&5
configure:3135: $? = 0
configure:3181: result: a.out
configure:3186: checking whether the C compiler works
configure:3192: ./a.out
configure:3195: $? = 0
configure:3212: result: yes
configure:3219: checking whether we are cross compiling
configure:3221: result: no
configure:3224: checking for suffix of executables
configure:3226: gcc -o conftest    conftest.c  >&5
configure:3229: $? = 0
configure:3254: result: 
configure:3260: checking for suffix of object files
configure:3281: gcc -c   conftest.c >&5
configure:3284: $? = 0
configure:3306: result: o
configure:3310: checking whether we are using the GNU C compiler
configure:3334: gcc -c   conftest.c >&5
configure:3340: $? = 0
configure:3344: test -z 
			 || test ! -s conftest.err
configure:3347: $? = 0
configure:3350: test -s conftest.o
configure:3353: $? = 0
configure:3366: result: yes
configure:3372: checking whether gcc accepts -g
configure:3393: gcc -c -g  conftest.c >&5
configure:3399: $? = 0
configure:3403: test -z 
			 || test ! -s conftest.err
configure:3406: $? = 0
configure:3409: test -s conftest.o
configure:3412: $? = 0
configure:3423: result: yes
configure:3440: checking for gcc option to accept ANSI C
configure:3510: gcc  -c -g -O2  conftest.c >&5
configure:3516: $? = 0
configure:3520: test -z 
			 || test ! -s conftest.err
configure:3523: $? = 0
configure:3526: test -s conftest.o
configure:3529: $? = 0
configure:3547: result: none needed
configure:3565: gcc -c -g -O2  conftest.c >&5
conftest.c:2: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'me'
configure:3571: $? = 1
configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
configure:3756: checking for g++
configure:3772: found /usr/lib64/ccache/g++
configure:3782: result: g++
configure:3798: checking for C++ compiler version
configure:3801: g++ --version </dev/null >&5
g++ (GCC) 4.1.2 20070925 (Red Hat 4.1.2-33)
Copyright (C) 2006 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:3804: $? = 0
configure:3806: g++ -v </dev/null >&5
Using built-in specs.
Target: x86_64-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --enable-plugin --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --with-cpu=generic --host=x86_64-redhat-linux
Thread model: posix
gcc version 4.1.2 20070925 (Red Hat 4.1.2-33)
configure:3809: $? = 0
configure:3811: g++ -V </dev/null >&5
g++: '-V' option must have argument
configure:3814: $? = 1
configure:3817: checking whether we are using the GNU C++ compiler
configure:3841: g++ -c   conftest.cc >&5
configure:3847: $? = 0
configure:3851: test -z 
			 || test ! -s conftest.err
configure:3854: $? = 0
configure:3857: test -s conftest.o
configure:3860: $? = 0
configure:3873: result: yes
configure:3879: checking whether g++ accepts -g
configure:3900: g++ -c -g  conftest.cc >&5
configure:3906: $? = 0
configure:3910: test -z 
			 || test ! -s conftest.err
configure:3913: $? = 0
configure:3916: test -s conftest.o
configure:3919: $? = 0
configure:3930: result: yes
configure:3972: g++ -c -g -O2  conftest.cc >&5
configure:3978: $? = 0
configure:3982: test -z 
			 || test ! -s conftest.err
configure:3985: $? = 0
configure:3988: test -s conftest.o
configure:3991: $? = 0
configure:4017: g++ -c -g -O2  conftest.cc >&5
conftest.cc: In function 'int main()':
conftest.cc:13: error: 'exit' was not declared in this scope
configure:4023: $? = 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:3972: g++ -c -g -O2  conftest.cc >&5
configure:3978: $? = 0
configure:3982: test -z 
			 || test ! -s conftest.err
configure:3985: $? = 0
configure:3988: test -s conftest.o
configure:3991: $? = 0
configure:4017: g++ -c -g -O2  conftest.cc >&5
configure:4023: $? = 0
configure:4027: test -z 
			 || test ! -s conftest.err
configure:4030: $? = 0
configure:4033: test -s conftest.o
configure:4036: $? = 0
configure:4123: checking for gnatbind
configure:4150: result: no
configure:4203: checking for gnatmake
configure:4230: result: no
configure:4242: checking whether compiler driver understands Ada
configure:4265: result: no
configure:4274: checking how to compare bootstrapped objects
configure:4299: result: cmp --ignore-initial=16 $$f1 $$f2
configure:5860: checking for bison
configure:5876: found /usr/bin/bison
configure:5886: result: bison -y
configure:5906: checking for bison
configure:5922: found /usr/bin/bison
configure:5932: result: bison
configure:5951: checking for gm4
configure:5980: result: no
configure:5951: checking for gnum4
configure:5980: result: no
configure:5951: checking for m4
configure:5967: found /usr/bin/m4
configure:5977: result: m4
configure:5996: checking for flex
configure:6012: found /usr/bin/flex
configure:6022: result: flex
configure:6042: checking for flex
configure:6058: found /usr/bin/flex
configure:6068: result: flex
configure:6087: checking for makeinfo
configure:6103: found /usr/bin/makeinfo
configure:6113: result: makeinfo
configure:6146: checking for expect
configure:6175: result: no
configure:6193: checking for runtest
configure:6222: result: no
configure:6332: checking for ar
configure:6348: found /usr/bin/ar
configure:6358: result: ar
configure:6467: checking for as
configure:6483: found /usr/bin/as
configure:6493: result: as
configure:6602: checking for dlltool
configure:6631: result: no
configure:6737: checking for ld
configure:6753: found /usr/bin/ld
configure:6763: result: ld
configure:6872: checking for lipo
configure:6901: result: no
configure:7007: checking for nm
configure:7023: found /usr/bin/nm
configure:7033: result: nm
configure:7142: checking for ranlib
configure:7158: found /usr/bin/ranlib
configure:7168: result: ranlib
configure:7272: checking for strip
configure:7288: found /usr/bin/strip
configure:7298: result: strip
configure:7402: checking for windres
configure:7431: result: no
configure:7537: checking for windmc
configure:7566: result: no
configure:7672: checking for objcopy
configure:7688: found /usr/bin/objcopy
configure:7698: result: objcopy
configure:7807: checking for objdump
configure:7823: found /usr/bin/objdump
configure:7833: result: objdump
configure:7945: checking for i686-mingw32-cc
configure:7974: result: no
configure:7945: checking for i686-mingw32-gcc
configure:7974: result: no
configure:8100: checking for i686-mingw32-c++
configure:8129: result: no
configure:8100: checking for i686-mingw32-g++
configure:8129: result: no
configure:8100: checking for i686-mingw32-cxx
configure:8129: result: no
configure:8100: checking for i686-mingw32-gxx
configure:8129: result: no
configure:8255: checking for i686-mingw32-gcc
configure:8284: result: no
configure:8405: checking for i686-mingw32-gcj
configure:8434: result: no
configure:8560: checking for i686-mingw32-gfortran
configure:8589: result: no
configure:8794: checking for i686-mingw32-ar
configure:8823: result: no
configure:9017: checking for i686-mingw32-as
configure:9046: result: no
configure:9240: checking for i686-mingw32-dlltool
configure:9269: result: no
configure:9463: checking for i686-mingw32-ld
configure:9492: result: no
configure:9686: checking for i686-mingw32-lipo
configure:9715: result: no
configure:9909: checking for i686-mingw32-nm
configure:9938: result: no
configure:10132: checking for i686-mingw32-objdump
configure:10161: result: no
configure:10355: checking for i686-mingw32-ranlib
configure:10384: result: no
configure:10578: checking for i686-mingw32-strip
configure:10607: result: no
configure:10801: checking for i686-mingw32-windres
configure:10830: result: no
configure:11024: checking for i686-mingw32-windmc
configure:11053: result: no
configure:11117: checking where to find the target ar
configure:11140: result: just compiled
configure:11159: checking where to find the target as
configure:11182: result: just compiled
configure:11201: checking where to find the target cc
configure:11238: result: pre-installed
configure:11243: checking where to find the target c++
configure:11283: result: pre-installed
configure:11288: checking where to find the target c++ for libstdc++
configure:11328: result: pre-installed
configure:11333: checking where to find the target dlltool
configure:11356: result: just compiled
configure:11375: checking where to find the target gcc
configure:11412: result: pre-installed
configure:11417: checking where to find the target gcj
configure:11457: result: pre-installed
configure:11462: checking where to find the target gfortran
configure:11502: result: pre-installed
configure:11507: checking where to find the target ld
configure:11530: result: just compiled
configure:11549: checking where to find the target lipo
configure:11575: result: pre-installed
configure:11580: checking where to find the target nm
configure:11603: result: just compiled
configure:11622: checking where to find the target objdump
configure:11645: result: just compiled
configure:11664: checking where to find the target ranlib
configure:11687: result: just compiled
configure:11706: checking where to find the target strip
configure:11729: result: just compiled
configure:11748: checking where to find the target windres
configure:11771: result: just compiled
configure:11790: checking where to find the target windmc
configure:11813: result: just compiled
configure:11860: checking whether to enable maintainer-specific portions of Makefiles
configure:11869: result: no
configure:11902: checking whether -fkeep-inline-functions is supported
configure:11926: gcc -c -g -O2 -fkeep-inline-functions  conftest.c >&5
configure:11932: $? = 0
configure:11936: test -z 
			 || test ! -s conftest.err
configure:11939: $? = 0
configure:11942: test -s conftest.o
configure:11945: $? = 0
configure:11947: result: yes
configure:12164: 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 darkc

config.status:748: creating Makefile

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

ac_cv_build=x86_64-unknown-linux-gnu
ac_cv_build_alias=x86_64-unknown-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_AR_FOR_TARGET_set=
ac_cv_env_AR_FOR_TARGET_value=
ac_cv_env_AR_set=
ac_cv_env_AR_value=
ac_cv_env_AS_FOR_TARGET_set=
ac_cv_env_AS_FOR_TARGET_value=
ac_cv_env_AS_set=
ac_cv_env_AS_value=
ac_cv_env_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=set
ac_cv_env_target_alias_value=i686-mingw32
ac_cv_exeext=
ac_cv_host=x86_64-unknown-linux-gnu
ac_cv_host_alias=x86_64-unknown-linux-gnu
ac_cv_objext=o
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AR=ar
ac_cv_prog_AS=as
ac_cv_prog_BISON=bison
ac_cv_prog_FLEX=flex
ac_cv_prog_LD=ld
ac_cv_prog_LEX=flex
ac_cv_prog_M4=m4
ac_cv_prog_MAKEINFO=makeinfo
ac_cv_prog_NM=nm
ac_cv_prog_OBJCOPY=objcopy
ac_cv_prog_OBJDUMP=objdump
ac_cv_prog_RANLIB=ranlib
ac_cv_prog_STRIP=strip
ac_cv_prog_YACC='bison -y'
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_GNATBIND=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-mingw32
ac_cv_target_alias=i686-mingw32
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=
gcc_cv_tool_prefix=/opt/cross-tools

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

AR='ar'
AR_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/ar'
AS='as'
AS_FOR_TARGET='$$r/$(HOST_SUBDIR)/gas/as-new'
BISON='bison'
CC='gcc'
CC_FOR_BUILD='$(CC)'
CC_FOR_TARGET='i686-mingw32-cc'
CFLAGS='-g -O2'
CFLAGS_FOR_BUILD='-g -O2'
COMPILER_AS_FOR_TARGET='$(AS_FOR_TARGET)'
COMPILER_LD_FOR_TARGET='$(LD_FOR_TARGET)'
COMPILER_NM_FOR_TARGET='$(NM_FOR_TARGET)'
CONFIGURE_GDB_TK=''
CPPFLAGS=''
CXX='g++'
CXXFLAGS='-g -O2'
CXX_FOR_TARGET='i686-mingw32-c++'
DEFS='-DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" '
DLLTOOL='dlltool'
DLLTOOL_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/dlltool'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EXEEXT=''
EXPECT='expect'
FLAGS_FOR_TARGET=' -L$$r/$(TARGET_SUBDIR)/winsup/mingw -L$$r/$(TARGET_SUBDIR)/winsup/w32api/lib -isystem $$s/winsup/mingw/include -isystem $$s/winsup/w32api/include -L$$r/$(HOST_SUBDIR)/ld'
FLEX='flex'
GCC_FOR_TARGET='i686-mingw32-gcc'
GCJ_FOR_TARGET='i686-mingw32-gcj'
GDB_TK=''
GFORTRAN_FOR_TARGET='i686-mingw32-gfortran'
GNATBIND='no'
GNATMAKE='no'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_GDB_TK=''
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
LD='ld'
LDFLAGS=''
LD_FOR_TARGET='$$r/$(HOST_SUBDIR)/ld/ld-new'
LEX='flex'
LIBOBJS=''
LIBS=''
LIPO='lipo'
LIPO_FOR_TARGET='i686-mingw32-lipo'
LN='ln'
LN_S='ln -s'
LTLIBOBJS=''
M4='m4'
MAINT='#'
MAINTAINER_MODE_FALSE=''
MAINTAINER_MODE_TRUE='#'
MAKEINFO='/home/darkc/Projects/wincc/cross-tools/new/binutils-2.18/missing makeinfo'
NM='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_TARGET='$$r/$(HOST_SUBDIR)/binutils/ranlib'
RAW_CXX_FOR_TARGET='i686-mingw32-c++'
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='../configure --target=i686-mingw32 --prefix=/opt/cross-tools'
WINDMC='windmc'
WINDMC_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/windmc'
WINDRES='windres'
WINDRES_FOR_TARGET='$$r/$(HOST_SUBDIR)/binutils/windres'
YACC='bison -y'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_GNATBIND='no'
ac_ct_GNATMAKE='no'
bindir='${exec_prefix}/bin'
build='x86_64-unknown-linux-gnu'
build_alias=''
build_configargs='--cache-file=../config.cache '--prefix=/opt/cross-tools' --program-transform-name='s,^,i686-mingw32-,''
build_configdirs=' libiberty'
build_cpu='x86_64'
build_libsubdir='build-x86_64-unknown-linux-gnu'
build_noncanonical='x86_64-unknown-linux-gnu'
build_os='linux-gnu'
build_subdir='build-x86_64-unknown-linux-gnu'
build_tooldir='${exec_prefix}/i686-mingw32'
build_vendor='unknown'
config_shell='/bin/sh'
configdirs=' intl libiberty opcodes bfd binutils gas ld gprof etc'
datadir='${prefix}/share'
datarootdir='${prefix}/share'
do_compare='cmp --ignore-initial=16 $$f1 $$f2'
docdir='${datarootdir}/doc'
exec_prefix='${prefix}'
gmpinc=''
gmplibs='-lmpfr -lgmp'
host='x86_64-unknown-linux-gnu'
host_alias=''
host_configargs='--cache-file=./config.cache  --with-gnu-as --with-gnu-ld '--prefix=/opt/cross-tools' --program-transform-name='s,^,i686-mingw32-,''
host_cpu='x86_64'
host_noncanonical='x86_64-unknown-linux-gnu'
host_os='linux-gnu'
host_subdir='.'
host_vendor='unknown'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${prefix}/info'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='${prefix}/var'
mandir='${prefix}/man'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/opt/cross-tools'
program_transform_name='s,^,i686-mingw32-,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
stage1_cflags='-g -fkeep-inline-functions'
stage1_checking='--enable-checking'
stage1_languages=',c,'
stage2_werror_flag=''
sysconfdir='${prefix}/etc'
target='i686-pc-mingw32'
target_alias='i686-mingw32'
target_configargs='--cache-file=./config.cache --enable-multilib --with-cross-host=x86_64-unknown-linux-gnu '--prefix=/opt/cross-tools' --program-transform-name='s,^,i686-mingw32-,''
target_cpu='i686'
target_noncanonical='i686-mingw32'
target_os='mingw32'
target_subdir='i686-mingw32'
target_vendor='pc'
tooldir='${exec_prefix}/i686-mingw32'

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

alphaieee_frag='/dev/null'
host_makefile_frag='/dev/null'
ospace_frag='/dev/null'
serialization_dependencies='serdep.tmp'
target_makefile_frag='/dev/null'

## ----------- ##
## 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
_______________________________________________
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils

Reply via email to