From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2204 invoked by alias); 6 Jan 2012 13:40:43 -0000 Received: (qmail 2186 invoked by uid 22791); 6 Jan 2012 13:40:42 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from aa012-1msr.fastwebnet.it (HELO aa012-1msr.fastwebnet.it) (62.101.93.132) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 06 Jan 2012 13:40:27 +0000 Received: from mrw001msr.intranet.fw (10.31.174.239) by aa012-1msr.fastwebnet.it (8.5.016.6) id 4EFB316900931914 for crossgcc@sourceware.org; Fri, 6 Jan 2012 14:40:25 +0100 Received: from pr002msr (10.31.174.235) by mrw001msr.intranet.fw (8.6.023) id 4E412FD1009880A3 for crossgcc@sourceware.org; Fri, 6 Jan 2012 14:40:25 +0100 Message-ID: <6836938.126461325857225086.JavaMail.defaultUser@defaultHost> Date: Fri, 06 Jan 2012 13:40:00 -0000 From: Reply-To: To: crossgcc@sourceware.org Subject: Problems with a mips cross compiler MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_25750_27004467.1325857225085" X-IsSubscribed: yes Mailing-List: contact crossgcc-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@sourceware.org X-SW-Source: 2012-01/txt/msg00019.txt.bz2 ------=_Part_25750_27004467.1325857225085 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-length: 4614 Hello everybody, I=C2=B4m doing my master thesis and I=C2=B4m having problems configuring th= e cross compile r. I=C2=B4ve read lots of articles, faq, tutorial, etc.., but I still think= I=C2=B4m missi ng something, maybe very stupid and basilar, but without that I can=C2=B4t = have a cle ar vision of everything and I can=C2=B4t make it all work=E2=80=A6so please= feel free to expl ain me everything. Let=C2=B4s go to the problem. I=C2=B4m using SoClib to design a NoC with many MIPS and many RAMs and I wa= nt to load different applications in every RAM, to make every MIPS read from only one= RAM. I managed to do that using very simple applications (like hello word with = inter rupts=E2=80=A6) so now I was trying to realize a JPEG decoder to use in a m= ore intense w ay the MIPS. The problem is that the cross compiler I=C2=B4m using can=C2= =B4t find the bas ic stdio functions and so cannot compile the application for the mips. So b= asica lly I didn=C2=B4t managed to install a working full cross compiler. 1) Let=C2=B4s start with the cross compiler installed with SoClib: Here there is the guide I=C2=B4ve followed to install it: http://www.soclib= .fr/trac/d ev/wiki/CrossCompiler Now from what I=C2=B4ve read this is not a full cross compiler. I=C2=B4ve o= nly installed a first stage gcc that can generate elf code for the mips but that can=C2=B4= t use any=20 C function. With that one, I should compile a C library to create a new cro= ss co mpiler. So it=C2=B4s normal that it is not working, although that doesn=C2= =B4t answer to t he question: why =E2=80=9CHello world=E2=80=9D was working if it uses a pri= ntf and includes stdi o.h? The answer should be that I=C2=B4ve seen that SoClib has his header st= dio.h with very few function realized (printf is there) so I can=C2=B4t use the stand= ard C libr ary with that compiler.=20 2) Because of that I=C2=B4ve decided to install a full cross compiler and I= =C2=B4ve read s o many guides that I will only post the two I=C2=B4ve used in practice: http://www.cse.iitb.ac.in/grc/gcc-workshop-11/downloads/slides/gccw11-confi= g-bui ld.pdf from page 108 (before explains the problems with cross compiling) It uses EGLIBC. The only difference is that I=C2=B4ve used as target =E2=80= =9Cmipsel-elf=E2=80=9D. If I=C2=B4ve understood correctly, this method requires a 3 stage cross compi= ler, becau se eglibc can=C2=B4t be fully compiled with the first stage cross compiler.= Now the p roblem is that I can=C2=B4t succeed in installing eglibc with the first sta= ge cross c ompiler (it fails at page 122). I=C2=B4have attached the log. I think probl= ems starts when it says: =E2=80=9Cmipsel-elf-gcc: error: unrecognized option =C2=B4-V= =C2=B4=E2=80=9D and =E2=80=9Cmipsel-elf -gcc: fatal error: no input files compilation terminated=E2=80=9D. Seems th= at I=C2=B4ve some=20 problem with the compiler and all finishes with an unsupported platform=E2= =80=A6but it s hould work because I=C2=B4ve copied the eglibc/ports directory like the gui= de says=E2=80=A6 3) I=C2=B4ve tried another guide that uses newlib instead of eglibc: http://www.cygwin.com/ml/crossgcc/2005-08/msg00114/l-cross-ltr.pdf This guide creates only a 2 stage cross compiler. I think it=C2=B4s because= newlib ca n be fully compiled with the first stage compiler=E2=80=A6am I right? Anywa= y I get the s ame problem. I can=C2=B4t compile newlib and I get similar errors (log atta= ched). So that=C2=B4s my problem and here I put some doubt I=C2=B4ve had trying to= resolve it. 4) Can the problem be the target=3Dmipsel-elf? I know from the gnu document= ation t hat the name to configure gnu should be: cpu-manufacturer-os (or cpu-manufa= cture r-kernel-os) but I=C2=B4ve read that mipsel-elf is accepted. The elf should= be becaus e I don=C2=B4t want to load an OS on my NoC platform and here the second do= ubt=E2=80=A6 5) Can the problem be the OS thing? The guides uses linux kernel headers=E2= =80=A6maybe w ith a mipsel-elf target I shouldn=C2=B4t configure binutils =E2=80=93with-s= ysroot? But sounds me strange=E2=80=A6what should change? 6) Yet another probably stupid question. The stdio and generally C function= s, do esn=C2=B4t need an OS right? Because all these problems are making me doubt= on the ba sics=E2=80=A6so I should be able to run a JPEG decoding C application with = a mipsel-elf=20 cross compiler right? Every consideration, advice and help will be appreciated. If you have some = docum ents about these arguments please let me know, I would like to learn and be= come=20 more confident in this field. Thanks Alberto ------=_Part_25750_27004467.1325857225085 Content-Type: application/octet-stream; name=config_newlib.log Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=config_newlib.log; size=13485 Content-length: 13049 This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by configure, which was generated by GNU Autoconf 2.64. Invocation command line was $ /home/bertone/Scaricati/src/newlib-1.20.0/configure --host=mipsel-elf --prefix=/home/bertone/programmazione/crosscompiler/mips/install ## --------- ## ## Platform. ## ## --------- ## hostname = KennyNotebook uname -m = x86_64 uname -r = 2.6.35-31-generic uname -s = Linux uname -v = #63-Ubuntu SMP Mon Nov 28 19:29:10 UTC 2011 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /usr/local/soclib/utils/bin PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/sbin PATH: /usr/bin PATH: /sbin PATH: /bin PATH: /usr/games PATH: /usr/local/binutils/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2237: checking build system type configure:2251: result: x86_64-unknown-linux-gnu configure:2298: checking host system type configure:2311: result: mipsel-unknown-elf configure:2331: checking target system type configure:2344: result: mipsel-unknown-elf configure:2398: checking for a BSD-compatible install configure:2466: result: /usr/bin/install -c configure:2477: checking whether ln works configure:2499: result: yes configure:2503: checking whether ln -s works configure:2507: result: yes configure:2514: checking for a sed that does not truncate output configure:2578: result: /bin/sed configure:2587: checking for gawk configure:2603: found /usr/bin/gawk configure:2614: result: gawk configure:3733: checking for mipsel-elf-gcc configure:3760: result: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc configure:4029: checking for C compiler version configure:4038: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc --version >&5 mipsel-elf-gcc (GCC) 4.6.2 Copyright (C) 2011 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:4049: $? = 0 configure:4038: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -v >&5 Using built-in specs. COLLECT_GCC=/home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc COLLECT_LTO_WRAPPER=/home/bertone/programmazione/crosscompiler/mips/install/libexec/gcc/mipsel-elf/4.6.2/lto-wrapper Target: mipsel-elf Configured with: ../../../../../Scaricati/src/gcc-4.6.2/configure --target=mipsel-elf --prefix=/home/bertone/programmazione/crosscompiler/mips/install --without-headers --with-newlib --disable-shared --disable-threads --disable-libssp --disable-libgomp --disable-libmudflap --enable-languages=c --disable-werror Thread model: single gcc version 4.6.2 (GCC) configure:4049: $? = 0 configure:4038: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -V >&5 mipsel-elf-gcc: error: unrecognized option '-V' mipsel-elf-gcc: fatal error: no input files compilation terminated. configure:4049: $? = 1 configure:4038: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -qversion >&5 mipsel-elf-gcc: error: unrecognized option '-qversion' mipsel-elf-gcc: fatal error: no input files compilation terminated. configure:4049: $? = 1 configure:4069: checking for C compiler default output file name configure:4091: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc conftest.c >&5 /home/bertone/programmazione/crosscompiler/mips/install/lib/gcc/mipsel-elf/4.6.2/../../../../mipsel-elf/bin/ld: cannot find crti.o: No such file or directory /home/bertone/programmazione/crosscompiler/mips/install/lib/gcc/mipsel-elf/4.6.2/../../../../mipsel-elf/bin/ld: cannot find crtbegin.o: No such file or directory /home/bertone/programmazione/crosscompiler/mips/install/lib/gcc/mipsel-elf/4.6.2/../../../../mipsel-elf/bin/ld: cannot find -lgcc /home/bertone/programmazione/crosscompiler/mips/install/lib/gcc/mipsel-elf/4.6.2/../../../../mipsel-elf/bin/ld: cannot find -lgcc /home/bertone/programmazione/crosscompiler/mips/install/lib/gcc/mipsel-elf/4.6.2/../../../../mipsel-elf/bin/ld: cannot find crtend.o: No such file or directory /home/bertone/programmazione/crosscompiler/mips/install/lib/gcc/mipsel-elf/4.6.2/../../../../mipsel-elf/bin/ld: cannot find crtn.o: No such file or directory collect2: ld returned 1 exit status configure:4095: $? = 1 configure:4132: result: configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:4138: error: in `/home/bertone/programmazione/crosscompiler/mips/build/newlib': configure:4142: error: C compiler cannot create executables See `config.log' for more details. ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=x86_64-unknown-linux-gnu ac_cv_env_AR_FOR_TARGET_set= ac_cv_env_AR_FOR_TARGET_value= ac_cv_env_AR_set= ac_cv_env_AR_value= ac_cv_env_AS_FOR_TARGET_set= ac_cv_env_AS_FOR_TARGET_value= ac_cv_env_AS_set= ac_cv_env_AS_value= ac_cv_env_CCC_set= ac_cv_env_CCC_value= ac_cv_env_CC_FOR_TARGET_set= ac_cv_env_CC_FOR_TARGET_value= ac_cv_env_CC_set=set ac_cv_env_CC_value=/home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CXXFLAGS_set= ac_cv_env_CXXFLAGS_value= ac_cv_env_CXX_FOR_TARGET_set= ac_cv_env_CXX_FOR_TARGET_value= ac_cv_env_CXX_set= ac_cv_env_CXX_value= ac_cv_env_DLLTOOL_FOR_TARGET_set= ac_cv_env_DLLTOOL_FOR_TARGET_value= ac_cv_env_DLLTOOL_set= ac_cv_env_DLLTOOL_value= ac_cv_env_GCC_FOR_TARGET_set= ac_cv_env_GCC_FOR_TARGET_value= ac_cv_env_GCJ_FOR_TARGET_set= ac_cv_env_GCJ_FOR_TARGET_value= ac_cv_env_GFORTRAN_FOR_TARGET_set= ac_cv_env_GFORTRAN_FOR_TARGET_value= ac_cv_env_GOC_FOR_TARGET_set= ac_cv_env_GOC_FOR_TARGET_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LD_FOR_TARGET_set= ac_cv_env_LD_FOR_TARGET_value= ac_cv_env_LD_set= ac_cv_env_LD_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_LIPO_FOR_TARGET_set= ac_cv_env_LIPO_FOR_TARGET_value= ac_cv_env_LIPO_set= ac_cv_env_LIPO_value= ac_cv_env_NM_FOR_TARGET_set= ac_cv_env_NM_FOR_TARGET_value= ac_cv_env_NM_set= ac_cv_env_NM_value= ac_cv_env_OBJCOPY_set= ac_cv_env_OBJCOPY_value= ac_cv_env_OBJDUMP_FOR_TARGET_set= ac_cv_env_OBJDUMP_FOR_TARGET_value= ac_cv_env_OBJDUMP_set= ac_cv_env_OBJDUMP_value= ac_cv_env_RANLIB_FOR_TARGET_set= ac_cv_env_RANLIB_FOR_TARGET_value= ac_cv_env_RANLIB_set= ac_cv_env_RANLIB_value= ac_cv_env_READELF_FOR_TARGET_set= ac_cv_env_READELF_FOR_TARGET_value= ac_cv_env_READELF_set= ac_cv_env_READELF_value= ac_cv_env_STRIP_FOR_TARGET_set= ac_cv_env_STRIP_FOR_TARGET_value= ac_cv_env_STRIP_set= ac_cv_env_STRIP_value= ac_cv_env_WINDMC_FOR_TARGET_set= ac_cv_env_WINDMC_FOR_TARGET_value= ac_cv_env_WINDMC_set= ac_cv_env_WINDMC_value= ac_cv_env_WINDRES_FOR_TARGET_set= ac_cv_env_WINDRES_FOR_TARGET_value= ac_cv_env_WINDRES_set= ac_cv_env_WINDRES_value= ac_cv_env_build_alias_set= ac_cv_env_build_alias_value= ac_cv_env_build_configargs_set= ac_cv_env_build_configargs_value= ac_cv_env_host_alias_set=set ac_cv_env_host_alias_value=mipsel-elf ac_cv_env_host_configargs_set= ac_cv_env_host_configargs_value= ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_env_target_configargs_set= ac_cv_env_target_configargs_value= ac_cv_host=mipsel-unknown-elf ac_cv_path_SED=/bin/sed ac_cv_path_install='/usr/bin/install -c' ac_cv_prog_AWK=gawk ac_cv_prog_CC=/home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc ac_cv_target=mipsel-unknown-elf acx_cv_prog_LN=ln ## ----------------- ## ## Output variables. ## ## ----------------- ## AR='' AR_FOR_BUILD='ar' AR_FOR_TARGET='' AS='' AS_FOR_BUILD='as' AS_FOR_TARGET='' AWK='gawk' BISON='' BUILD_CONFIG='' CC='/home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc' CC_FOR_BUILD='gcc' CC_FOR_TARGET='' CFLAGS='' CFLAGS_FOR_BUILD='' CFLAGS_FOR_TARGET='' COMPILER_AS_FOR_TARGET='' COMPILER_LD_FOR_TARGET='' COMPILER_NM_FOR_TARGET='' CONFIGURE_GDB_TK='' CPPFLAGS='' CXX='' CXXFLAGS='' CXXFLAGS_FOR_BUILD='' CXXFLAGS_FOR_TARGET='' CXX_FOR_BUILD='g++' CXX_FOR_TARGET='' DEBUG_PREFIX_CFLAGS_FOR_TARGET='' DEFS='' DLLTOOL='' DLLTOOL_FOR_BUILD='dlltool' DLLTOOL_FOR_TARGET='' ECHO_C='' ECHO_N='-n' ECHO_T='' EXEEXT='' EXPECT='' EXTRA_CONFIGARGS_LIBJAVA='--disable-static' FLAGS_FOR_TARGET='' FLEX='' GCC_FOR_TARGET='' GCC_SHLIB_SUBDIR='' GCJ_FOR_BUILD='gcj' GCJ_FOR_TARGET='' GDB_TK='' GFORTRAN_FOR_BUILD='gfortran' GFORTRAN_FOR_TARGET='' GNATBIND='' GNATMAKE='' GOC_FOR_BUILD='gccgo' GOC_FOR_TARGET='' INSTALL_DATA='${INSTALL} -m 644' INSTALL_GDB_TK='' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' LD='' LDFLAGS='' LDFLAGS_FOR_BUILD='' LDFLAGS_FOR_TARGET='' LD_FOR_BUILD='ld' LD_FOR_TARGET='' LEX='' LIBOBJS='' LIBS='' LIPO='' LIPO_FOR_TARGET='' LN='ln' LN_S='ln -s' LTLIBOBJS='' M4='' MAINT='' MAINTAINER_MODE_FALSE='' MAINTAINER_MODE_TRUE='' MAKEINFO='' NM='' NM_FOR_BUILD='nm' NM_FOR_TARGET='' OBJCOPY='' OBJDUMP='' OBJDUMP_FOR_TARGET='' OBJEXT='' PACKAGE_BUGREPORT='' PACKAGE_NAME='' PACKAGE_STRING='' PACKAGE_TARNAME='' PACKAGE_URL='' PACKAGE_VERSION='' PATH_SEPARATOR=':' POSTSTAGE1_CONFIGURE_FLAGS='' RANLIB='' RANLIB_FOR_BUILD='ranlib' RANLIB_FOR_TARGET='' RAW_CXX_FOR_TARGET='' READELF='' READELF_FOR_TARGET='' RPATH_ENVVAR='' RUNTEST='' SED='/bin/sed' SHELL='/bin/bash' STRIP='' STRIP_FOR_TARGET='' SYSROOT_CFLAGS_FOR_TARGET='' TOPLEVEL_CONFIGURE_ARGUMENTS='/home/bertone/Scaricati/src/newlib-1.20.0/configure --host=mipsel-elf --prefix=/home/bertone/programmazione/crosscompiler/mips/install' WINDMC='' WINDMC_FOR_BUILD='windmc' WINDMC_FOR_TARGET='' WINDRES='' WINDRES_FOR_BUILD='windres' WINDRES_FOR_TARGET='' YACC='' ac_ct_CC='' ac_ct_CXX='' bindir='${exec_prefix}/bin' build='x86_64-unknown-linux-gnu' build_alias='' build_configargs='' build_configdirs='build-libiberty build-texinfo build-flex build-bison build-m4 build-fixincludes' build_cpu='x86_64' build_libsubdir='build-x86_64-unknown-linux-gnu' build_noncanonical='x86_64-unknown-linux-gnu' build_os='linux-gnu' build_subdir='build-x86_64-unknown-linux-gnu' build_tooldir='' build_vendor='unknown' clooginc='' clooglibs='' compare_exclusions='' configdirs='intl libiberty opcodes bfd readline tcl tk itcl libgui zlib libcpp libdecnumber gmp mpfr mpc ppl cloog libelf libiconv texinfo flex bison binutils gas ld fixincludes gcc cgen sid sim gdb gprof etc expect dejagnu m4 utils guile fastjar gnattools' datadir='${datarootdir}' datarootdir='${prefix}/share' do_compare='' docdir='${datarootdir}/doc/${PACKAGE}' dvidir='${docdir}' exec_prefix='NONE' extra_host_libiberty_configure_flags='' extra_mpc_gmp_configure_flags='' extra_mpc_mpfr_configure_flags='' extra_mpfr_configure_flags='' gmpinc='' gmplibs='' host='mipsel-unknown-elf' host_alias='mipsel-elf' host_configargs='' host_cpu='mipsel' host_noncanonical='mipsel-elf' host_os='elf' host_subdir='.' host_vendor='unknown' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' oldincludedir='/usr/include' pdfdir='${docdir}' poststage1_ldflags='' poststage1_libs='' pplinc='' ppllibs='' prefix='/home/bertone/programmazione/crosscompiler/mips/install' program_transform_name='s,y,y,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' stage1_cflags='' stage1_checking='' stage1_languages='' stage1_ldflags='' stage1_libs='' stage2_werror_flag='' sysconfdir='${prefix}/etc' target='mipsel-unknown-elf' target_alias='' target_configargs='' target_configdirs='target-libgcc target-libgloss target-newlib target-libgomp target-libitm target-libstdc++-v3 target-libmudflap target-libssp target-libquadmath target-libgfortran target-boehm-gc target-libffi target-zlib target-libjava target-libobjc target-libada target-libgo target-rda' target_cpu='mipsel' target_noncanonical='mipsel-elf' target_os='elf' target_subdir='mipsel-elf' target_vendor='unknown' tooldir='' ## ------------------- ## ## File substitutions. ## ## ------------------- ## alphaieee_frag='' host_makefile_frag='/dev/null' ospace_frag='' serialization_dependencies='' target_makefile_frag='' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION "" #define PACKAGE_STRING "" #define PACKAGE_BUGREPORT "" #define PACKAGE_URL "" configure: exit 77 ------=_Part_25750_27004467.1325857225085 Content-Type: application/octet-stream; name=config_eglibc.log Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=config_eglibc.log; size=28912 Content-length: 28078 This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by GNU C Library configure (see version.h), which was generated by GNU Autoconf 2.63. Invocation command line was $ /home/bertone/Scaricati/src/eglibc/eglibc/libc/configure --prefix=/usr --with-headers=/home/bertone/programmazione/crosscompiler/mips/sysroot/usr/include --build=i686-pc-linux-gnu --host=mipsel-elf --disable-profile --without-gd --without-cvs --enable-add-ons ## --------- ## ## Platform. ## ## --------- ## hostname = KennyNotebook uname -m = x86_64 uname -r = 2.6.35-31-generic uname -s = Linux uname -v = #63-Ubuntu SMP Mon Nov 28 19:29:10 UTC 2011 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /usr/local/soclib/utils/bin PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/sbin PATH: /usr/bin PATH: /sbin PATH: /bin PATH: /usr/games PATH: /usr/local/binutils/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2029: checking build system type configure:2047: result: i686-pc-linux-gnu configure:2069: checking host system type configure:2084: result: mipsel-unknown-elf configure:2115: checking for mipsel-elf-gcc configure:2142: result: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc configure:2414: checking for C compiler version configure:2422: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc --version >&5 mipsel-elf-gcc (GCC) 4.6.2 Copyright (C) 2011 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:2426: $? = 0 configure:2433: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -v >&5 Using built-in specs. COLLECT_GCC=/home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc COLLECT_LTO_WRAPPER=/home/bertone/programmazione/crosscompiler/mips/install/libexec/gcc/mipsel-elf/4.6.2/lto-wrapper Target: mipsel-elf Configured with: ../../../../../Scaricati/src/gcc-4.6.2/configure --target=mipsel-elf --prefix=/home/bertone/programmazione/crosscompiler/mips/install --without-headers --with-newlib --disable-shared --disable-threads --disable-libssp --disable-libgomp --disable-libmudflap --enable-languages=c --disable-werror Thread model: single gcc version 4.6.2 (GCC) configure:2437: $? = 0 configure:2444: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -V >&5 mipsel-elf-gcc: error: unrecognized option '-V' mipsel-elf-gcc: fatal error: no input files compilation terminated. configure:2448: $? = 1 configure:2452: checking for suffix of object files configure:2478: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -c conftest.c >&5 configure:2482: $? = 0 configure:2507: result: o configure:2511: checking whether we are using the GNU C compiler configure:2540: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -c conftest.c >&5 configure:2547: $? = 0 configure:2564: result: yes configure:2573: checking whether /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc accepts -g configure:2603: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -c -g conftest.c >&5 configure:2610: $? = 0 configure:2711: result: yes configure:2728: checking for /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc option to accept ISO C89 configure:2802: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -c -g -O2 conftest.c >&5 conftest.c:9:19: fatal error: stdio.h: No such file or directory compilation terminated. configure:2809: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "GNU C Library" | #define PACKAGE_TARNAME "glibc" | #define PACKAGE_VERSION "(see version.h)" | #define PACKAGE_STRING "GNU C Library (see version.h)" | #define PACKAGE_BUGREPORT "http://sourceware.org/bugzilla/" | /* end confdefs.h. */ | #include | #include | #include | #include | /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ | struct buf { int x; }; | FILE * (*rcsopen) (struct buf *, struct stat *, int); | static char *e (p, i) | char **p; | int i; | { | return p[i]; | } | static char *f (char * (*g) (char **, int), char **p, ...) | { | char *s; | va_list v; | va_start (v,p); | s = g (p, va_arg (v,int)); | va_end (v); | return s; | } | | /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has | function prototypes and stuff, but not '\xHH' hex character constants. | These don't provoke an error unfortunately, instead are silently treated | as 'x'. The following induces an error, until -std is added to get | proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an | array size at least. It's necessary to write '\x00'==0 to get something | that's true only with -std. */ | int osf4_cc_array ['\x00' == 0 ? 1 : -1]; | | /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters | inside strings and character constants. */ | #define FOO(x) 'x' | int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; | | int test (int i, double x); | struct s1 {int (*f) (int a);}; | struct s2 {int (*f) (double a);}; | int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); | int argc; | char **argv; | int | main () | { | return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; | ; | return 0; | } configure:2802: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -qlanglvl=extc89 -c -g -O2 conftest.c >&5 mipsel-elf-gcc: error: unrecognized option '-qlanglvl=extc89' configure:2809: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "GNU C Library" | #define PACKAGE_TARNAME "glibc" | #define PACKAGE_VERSION "(see version.h)" | #define PACKAGE_STRING "GNU C Library (see version.h)" | #define PACKAGE_BUGREPORT "http://sourceware.org/bugzilla/" | /* end confdefs.h. */ | #include | #include | #include | #include | /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ | struct buf { int x; }; | FILE * (*rcsopen) (struct buf *, struct stat *, int); | static char *e (p, i) | char **p; | int i; | { | return p[i]; | } | static char *f (char * (*g) (char **, int), char **p, ...) | { | char *s; | va_list v; | va_start (v,p); | s = g (p, va_arg (v,int)); | va_end (v); | return s; | } | | /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has | function prototypes and stuff, but not '\xHH' hex character constants. | These don't provoke an error unfortunately, instead are silently treated | as 'x'. The following induces an error, until -std is added to get | proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an | array size at least. It's necessary to write '\x00'==0 to get something | that's true only with -std. */ | int osf4_cc_array ['\x00' == 0 ? 1 : -1]; | | /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters | inside strings and character constants. */ | #define FOO(x) 'x' | int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; | | int test (int i, double x); | struct s1 {int (*f) (int a);}; | struct s2 {int (*f) (double a);}; | int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); | int argc; | char **argv; | int | main () | { | return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; | ; | return 0; | } configure:2802: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -qlanglvl=ansi -c -g -O2 conftest.c >&5 mipsel-elf-gcc: error: unrecognized option '-qlanglvl=ansi' configure:2809: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "GNU C Library" | #define PACKAGE_TARNAME "glibc" | #define PACKAGE_VERSION "(see version.h)" | #define PACKAGE_STRING "GNU C Library (see version.h)" | #define PACKAGE_BUGREPORT "http://sourceware.org/bugzilla/" | /* end confdefs.h. */ | #include | #include | #include | #include | /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ | struct buf { int x; }; | FILE * (*rcsopen) (struct buf *, struct stat *, int); | static char *e (p, i) | char **p; | int i; | { | return p[i]; | } | static char *f (char * (*g) (char **, int), char **p, ...) | { | char *s; | va_list v; | va_start (v,p); | s = g (p, va_arg (v,int)); | va_end (v); | return s; | } | | /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has | function prototypes and stuff, but not '\xHH' hex character constants. | These don't provoke an error unfortunately, instead are silently treated | as 'x'. The following induces an error, until -std is added to get | proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an | array size at least. It's necessary to write '\x00'==0 to get something | that's true only with -std. */ | int osf4_cc_array ['\x00' == 0 ? 1 : -1]; | | /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters | inside strings and character constants. */ | #define FOO(x) 'x' | int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; | | int test (int i, double x); | struct s1 {int (*f) (int a);}; | struct s2 {int (*f) (double a);}; | int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); | int argc; | char **argv; | int | main () | { | return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; | ; | return 0; | } configure:2802: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -std -c -g -O2 conftest.c >&5 cc1: error: unrecognized command line option '-std' configure:2809: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "GNU C Library" | #define PACKAGE_TARNAME "glibc" | #define PACKAGE_VERSION "(see version.h)" | #define PACKAGE_STRING "GNU C Library (see version.h)" | #define PACKAGE_BUGREPORT "http://sourceware.org/bugzilla/" | /* end confdefs.h. */ | #include | #include | #include | #include | /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ | struct buf { int x; }; | FILE * (*rcsopen) (struct buf *, struct stat *, int); | static char *e (p, i) | char **p; | int i; | { | return p[i]; | } | static char *f (char * (*g) (char **, int), char **p, ...) | { | char *s; | va_list v; | va_start (v,p); | s = g (p, va_arg (v,int)); | va_end (v); | return s; | } | | /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has | function prototypes and stuff, but not '\xHH' hex character constants. | These don't provoke an error unfortunately, instead are silently treated | as 'x'. The following induces an error, until -std is added to get | proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an | array size at least. It's necessary to write '\x00'==0 to get something | that's true only with -std. */ | int osf4_cc_array ['\x00' == 0 ? 1 : -1]; | | /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters | inside strings and character constants. */ | #define FOO(x) 'x' | int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; | | int test (int i, double x); | struct s1 {int (*f) (int a);}; | struct s2 {int (*f) (double a);}; | int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); | int argc; | char **argv; | int | main () | { | return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; | ; | return 0; | } configure:2802: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -Ae -c -g -O2 conftest.c >&5 :0:1: error: missing '(' after predicate conftest.c:9:19: fatal error: stdio.h: No such file or directory compilation terminated. configure:2809: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "GNU C Library" | #define PACKAGE_TARNAME "glibc" | #define PACKAGE_VERSION "(see version.h)" | #define PACKAGE_STRING "GNU C Library (see version.h)" | #define PACKAGE_BUGREPORT "http://sourceware.org/bugzilla/" | /* end confdefs.h. */ | #include | #include | #include | #include | /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ | struct buf { int x; }; | FILE * (*rcsopen) (struct buf *, struct stat *, int); | static char *e (p, i) | char **p; | int i; | { | return p[i]; | } | static char *f (char * (*g) (char **, int), char **p, ...) | { | char *s; | va_list v; | va_start (v,p); | s = g (p, va_arg (v,int)); | va_end (v); | return s; | } | | /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has | function prototypes and stuff, but not '\xHH' hex character constants. | These don't provoke an error unfortunately, instead are silently treated | as 'x'. The following induces an error, until -std is added to get | proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an | array size at least. It's necessary to write '\x00'==0 to get something | that's true only with -std. */ | int osf4_cc_array ['\x00' == 0 ? 1 : -1]; | | /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters | inside strings and character constants. */ | #define FOO(x) 'x' | int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; | | int test (int i, double x); | struct s1 {int (*f) (int a);}; | struct s2 {int (*f) (double a);}; | int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); | int argc; | char **argv; | int | main () | { | return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; | ; | return 0; | } configure:2802: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -Aa -D_HPUX_SOURCE -c -g -O2 conftest.c >&5 :0:1: error: missing '(' after predicate conftest.c:9:19: fatal error: stdio.h: No such file or directory compilation terminated. configure:2809: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "GNU C Library" | #define PACKAGE_TARNAME "glibc" | #define PACKAGE_VERSION "(see version.h)" | #define PACKAGE_STRING "GNU C Library (see version.h)" | #define PACKAGE_BUGREPORT "http://sourceware.org/bugzilla/" | /* end confdefs.h. */ | #include | #include | #include | #include | /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ | struct buf { int x; }; | FILE * (*rcsopen) (struct buf *, struct stat *, int); | static char *e (p, i) | char **p; | int i; | { | return p[i]; | } | static char *f (char * (*g) (char **, int), char **p, ...) | { | char *s; | va_list v; | va_start (v,p); | s = g (p, va_arg (v,int)); | va_end (v); | return s; | } | | /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has | function prototypes and stuff, but not '\xHH' hex character constants. | These don't provoke an error unfortunately, instead are silently treated | as 'x'. The following induces an error, until -std is added to get | proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an | array size at least. It's necessary to write '\x00'==0 to get something | that's true only with -std. */ | int osf4_cc_array ['\x00' == 0 ? 1 : -1]; | | /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters | inside strings and character constants. */ | #define FOO(x) 'x' | int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; | | int test (int i, double x); | struct s1 {int (*f) (int a);}; | struct s2 {int (*f) (double a);}; | int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); | int argc; | char **argv; | int | main () | { | return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; | ; | return 0; | } configure:2802: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -Xc -D__EXTENSIONS__ -c -g -O2 conftest.c >&5 mipsel-elf-gcc: error: unrecognized option '-Xc' configure:2809: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "GNU C Library" | #define PACKAGE_TARNAME "glibc" | #define PACKAGE_VERSION "(see version.h)" | #define PACKAGE_STRING "GNU C Library (see version.h)" | #define PACKAGE_BUGREPORT "http://sourceware.org/bugzilla/" | /* end confdefs.h. */ | #include | #include | #include | #include | /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ | struct buf { int x; }; | FILE * (*rcsopen) (struct buf *, struct stat *, int); | static char *e (p, i) | char **p; | int i; | { | return p[i]; | } | static char *f (char * (*g) (char **, int), char **p, ...) | { | char *s; | va_list v; | va_start (v,p); | s = g (p, va_arg (v,int)); | va_end (v); | return s; | } | | /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has | function prototypes and stuff, but not '\xHH' hex character constants. | These don't provoke an error unfortunately, instead are silently treated | as 'x'. The following induces an error, until -std is added to get | proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an | array size at least. It's necessary to write '\x00'==0 to get something | that's true only with -std. */ | int osf4_cc_array ['\x00' == 0 ? 1 : -1]; | | /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters | inside strings and character constants. */ | #define FOO(x) 'x' | int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; | | int test (int i, double x); | struct s1 {int (*f) (int a);}; | struct s2 {int (*f) (double a);}; | int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); | int argc; | char **argv; | int | main () | { | return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; | ; | return 0; | } configure:2835: result: unsupported configure:2855: checking for gcc configure:2882: result: gcc configure:2900: checking how to run the C preprocessor configure:2940: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -E conftest.c configure:2947: $? = 0 configure:2978: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -E conftest.c conftest.c:8:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:2985: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "GNU C Library" | #define PACKAGE_TARNAME "glibc" | #define PACKAGE_VERSION "(see version.h)" | #define PACKAGE_STRING "GNU C Library (see version.h)" | #define PACKAGE_BUGREPORT "http://sourceware.org/bugzilla/" | /* end confdefs.h. */ | #include configure:3018: result: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -E configure:3047: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -E conftest.c configure:3054: $? = 0 configure:3085: /home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -E conftest.c conftest.c:8:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:3092: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "GNU C Library" | #define PACKAGE_TARNAME "glibc" | #define PACKAGE_VERSION "(see version.h)" | #define PACKAGE_STRING "GNU C Library (see version.h)" | #define PACKAGE_BUGREPORT "http://sourceware.org/bugzilla/" | /* end confdefs.h. */ | #include configure:3146: checking for mipsel-elf-g++ configure:3176: result: no configure:3146: checking for mipsel-elf-c++ configure:3176: result: no configure:3146: checking for mipsel-elf-gpp configure:3176: result: no configure:3146: checking for mipsel-elf-aCC configure:3176: result: no configure:3146: checking for mipsel-elf-CC configure:3176: result: no configure:3146: checking for mipsel-elf-cxx configure:3176: result: no configure:3146: checking for mipsel-elf-cc++ configure:3176: result: no configure:3146: checking for mipsel-elf-cl.exe configure:3176: result: no configure:3146: checking for mipsel-elf-FCC configure:3176: result: no configure:3146: checking for mipsel-elf-KCC configure:3176: result: no configure:3146: checking for mipsel-elf-RCC configure:3176: result: no configure:3146: checking for mipsel-elf-xlC_r configure:3176: result: no configure:3146: checking for mipsel-elf-xlC configure:3176: result: no configure:3190: checking for g++ configure:3206: found /usr/bin/g++ configure:3217: result: g++ configure:3233: WARNING: using cross tools not prefixed with host triplet configure:3244: checking for C++ compiler version configure:3252: g++ --version >&5 g++ (Ubuntu/Linaro 4.4.4-14ubuntu5) 4.4.5 Copyright (C) 2010 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:3256: $? = 0 configure:3263: g++ -v >&5 Using built-in specs. Target: x86_64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.4.4-14ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.4 --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) configure:3267: $? = 0 configure:3274: g++ -V >&5 g++: '-V' option must have argument configure:3278: $? = 1 configure:3281: checking whether we are using the GNU C++ compiler configure:3310: g++ -c conftest.cpp >&5 configure:3317: $? = 0 configure:3334: result: yes configure:3343: checking whether g++ accepts -g configure:3373: g++ -c -g conftest.cpp >&5 configure:3380: $? = 0 configure:3481: result: yes configure:4134: running configure fragment for add-on libidn configure:4134: running configure fragment for add-on nptl configure:4190: checking add-on ports for preconfigure fragments configure:4197: result: ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=i686-pc-linux-gnu ac_cv_c_compiler_gnu=yes ac_cv_cxx_compiler_gnu=yes ac_cv_env_CCC_set= ac_cv_env_CCC_value= ac_cv_env_CC_set=set ac_cv_env_CC_value=/home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CPP_set= ac_cv_env_CPP_value= ac_cv_env_CXXFLAGS_set= ac_cv_env_CXXFLAGS_value= ac_cv_env_CXX_set= ac_cv_env_CXX_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_build_alias_set=set ac_cv_env_build_alias_value=i686-pc-linux-gnu ac_cv_env_host_alias_set=set ac_cv_env_host_alias_value=mipsel-elf ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_host=mipsel-unknown-elf ac_cv_objext=o ac_cv_prog_BUILD_CC=gcc ac_cv_prog_CC=/home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc ac_cv_prog_CPP='/home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -E' ac_cv_prog_ac_ct_CXX=g++ ac_cv_prog_cc_c89=no ac_cv_prog_cc_g=yes ac_cv_prog_cxx_g=yes libc_cv_nss_crypt=no ## ----------------- ## ## Output variables. ## ## ----------------- ## AR='mipsel-elf-ar' AS='' ASFLAGS_config='' AUTOCONF='' AWK='' BASH_SHELL='' BISON='' BUILD_CC='gcc' CC='/home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc' CFLAGS='-g -O2' CPP='/home/bertone/programmazione/crosscompiler/mips/install/bin/mipsel-elf-gcc -E' CPPFLAGS='' CXX='g++' CXXFLAGS='-g -O2' CXX_SYSINCLUDES='' DEFINES='' DEFS='' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='' GREP='' INSTALL_DATA='' INSTALL_INFO='' INSTALL_PROGRAM='' INSTALL_SCRIPT='' KSH='' LD='' LDFLAGS='' LIBGD='' LIBOBJS='' LIBS='' LN_S='' LTLIBOBJS='' MAKE='' MAKEINFO='' MIG='' MSGFMT='' NM='' OBJCOPY='' OBJDUMP='' OBJEXT='o' PACKAGE_BUGREPORT='http://sourceware.org/bugzilla/' PACKAGE_NAME='GNU C Library' PACKAGE_STRING='GNU C Library (see version.h)' PACKAGE_TARNAME='glibc' PACKAGE_VERSION='(see version.h)' PATH_SEPARATOR=':' PERL='' PKGVERSION='(EGLIBC) ' PKGVERSION_TEXI='(EGLIBC) ' PWD_P='' READELF='' RELEASE='' REPORT_BUGS_TEXI='@uref{http://www.eglibc.org/issues/}' REPORT_BUGS_TO='' SED='' SHELL='/bin/bash' SYSINCLUDES='' VERSION='' VERSIONING='' ac_ct_CC='' ac_ct_CXX='g++' add_on_subdirs=' libidn' add_ons='libidn ports' all_warnings='' base_machine='mips' bindir='${exec_prefix}/bin' bindnow='no' bounded='no' build='i686-pc-linux-gnu' build_alias='i686-pc-linux-gnu' build_cpu='i686' build_os='linux-gnu' build_vendor='pc' cross_compiling='yes' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' elf='no' enable_check_abi='no' exceptions='' exec_prefix='NONE' fno_unit_at_a_time='' force_install='yes' gnu89_inline='' have_libaudit='' have_libcap='' have_selinux='' host='mipsel-unknown-elf' host_alias='mipsel-elf' host_cpu='mipsel' host_os='elf' host_vendor='unknown' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' ldd_rewrite_script='' libc_cv_Bgroup='' libc_cv_as_i686='' libc_cv_as_needed='' libc_cv_cc_avx='' libc_cv_cc_fma4='' libc_cv_cc_novzeroupper='' libc_cv_cc_sse4='' libc_cv_cc_submachine='' libc_cv_cc_with_libunwind='' libc_cv_cpp_asm_debuginfo='' libc_cv_forced_unwind='' libc_cv_fpie='' libc_cv_gcc_static_libgcc='' libc_cv_gcc_unwind_find_fde='' libc_cv_hashstyle='' libc_cv_have_bash2='' libc_cv_have_initfini='' libc_cv_have_ksh='' libc_cv_libgcc_s_suffix='' libc_cv_localedir='' libc_cv_nss_crypt='no' libc_cv_output_format='' libc_cv_pic_default='' libc_cv_rootsbindir='' libc_cv_slibdir='' libc_cv_ssp='' libc_cv_sysconfdir='' libc_cv_z_combreloc='' libc_cv_z_execstack='' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mach_interface_list='' mandir='${datarootdir}/man' multi_arch='default' nopic_initfini='' old_glibc_headers='' oldest_abi='default' oldincludedir='/usr/include' omitfp='no' pdfdir='${docdir}' prefix='/usr' profile='no' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' shared='default' sharedstatedir='${prefix}/com' sizeof_long_double='' static='yes' static_nss='no' subdirs=' ' submachine='' sysconfdir='${prefix}/etc' sysdeps_add_ons='' sysnames='' target_alias='' use_default_link='default' use_ldconfig='' with_fp='yes' xcoff='no' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_NAME "GNU C Library" #define PACKAGE_TARNAME "glibc" #define PACKAGE_VERSION "(see version.h)" #define PACKAGE_STRING "GNU C Library (see version.h)" #define PACKAGE_BUGREPORT "http://sourceware.org/bugzilla/" #define PKGVERSION "(EGLIBC) " #define REPORT_BUGS_TO "" #define HAVE_LIBIDN 1 configure: exit 1 ------=_Part_25750_27004467.1325857225085 Content-Type: text/plain; charset=us-ascii Content-length: 71 -- For unsubscribe information see http://sourceware.org/lists.html#faq ------=_Part_25750_27004467.1325857225085--