From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18891 invoked by alias); 7 Sep 2011 15:35:15 -0000 Received: (qmail 17516 invoked by uid 22791); 7 Sep 2011 15:35:09 -0000 X-SWARE-Spam-Status: No, hits=0.2 required=5.0 tests=AWL,BAYES_20,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_SOFTFAIL,TW_GX,TW_QV X-Spam-Check-By: sourceware.org Received: from elasmtp-dupuy.atl.sa.earthlink.net (HELO elasmtp-dupuy.atl.sa.earthlink.net) (209.86.89.62) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 07 Sep 2011 15:34:44 +0000 Received: from [71.163.33.18] (helo=brucesimac.home) by elasmtp-dupuy.atl.sa.earthlink.net with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.67) (envelope-from ) id 1R1K9D-0008Fi-Rw; Wed, 07 Sep 2011 11:34:43 -0400 Subject: Re: long long size compute failure during make of gcc-4.6.1 on OS X 10.7 Lion Mime-Version: 1.0 (Apple Message framework v1244.3) Content-Type: text/plain; charset=windows-1252 From: Bruce Hoglund In-Reply-To: Date: Wed, 07 Sep 2011 15:35:00 -0000 Cc: Ian Lance Taylor , gcc-help@gcc.gnu.org Content-Transfer-Encoding: quoted-printable Message-Id: <201D7C12-D208-4C72-8744-195673483E83@mac.com> References: <76A9B64F-3A3E-451E-BC23-EB4580B9875F@mac.com> <563FFE3F-C083-4668-B459-EF4D00E4EECB@mac.com> <9ED5FF3E-92FA-433A-8D09-CE81ABEC238D@mac.com> To: Jonathan Wakely X-ELNK-Trace: 9276e8c789f3a5f61aa676d7e74259b7b3291a7d08dfec79e53367fa3ba8d5642eeb082b7a4d3e29350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org X-SW-Source: 2011-09/txt/msg00057.txt.bz2 On Sep 7, 2011, at 10:07 AM, Jonathan Wakely wrote: > On 7 September 2011 14:48, Bruce Hoglund wrote: >>=20 >> On Sep 7, 2011, at 1:06 AM, Ian Lance Taylor wrote: >>>=20 >>> In general, the bottommost parts of config.log are not helpful. You >>> need to look for the failing test. >>=20 >> Searching the config.log on the word "fail" I found this middle bit: >=20 > Searching for "fail" in config.log is a total waste of time. > Individual tests run by configure are *supposed* to fail, that's how > it works. It tries lots of different tests and records the results, so > it knows what works on your system and what doesn't. It is by design > that many of them fail to compile or execute, configure just keeps > going trying other tests unless it hits some fatal error. >=20 > You need to find the failing test which *isn't* supposed to fail, the > "cannot compute sizeof (long long)" one, which is in gcc/config.log - > you should ignore all the other failures in that file, just find the > one which caused the fatal error that caused your build to fail. I have pasted the ~/tmp/gcc46/gcc/config.log file at the bottom. As for und= erstanding=85 " static long int longval () { return (long int) (sizeof (short)); } | static unsigned long int ulongval () { return (long int) (sizeof (short))= ; } | #include | #include | int | main () | { |=20 | FILE *f =3D fopen ("conftest.val", "w"); | if (! f) | return 1; | if (((long int) (sizeof (short))) < 0) | { | long int i =3D longval (); | if (i !=3D ((long int) (sizeof (short)))) | return 1; | fprintf (f, "%ld", i); | } | else | { | unsigned long int i =3D ulongval (); | if (i !=3D ((long int) (sizeof (short)))) | return 1; | fprintf (f, "%lu", i); | } | /* Do not output a trailing newline, as this causes \r\n confusion | on some platforms. */ | return ferror (f) || fclose (f) !=3D 0; |=20 | ; | return 0; | } configure:5771: result: 0 configure:5785: checking size of int configure:5790: gcc -o conftest -g -fkeep-inline-functions conftest.c >= &5 Undefined symbols for architecture x86_64: "___builtin___stpncpy_chk", referenced from: ___inline_stpncpy_chk in ccL1VweA.o ld: symbol(s) not found for architecture x86_64 collect2: ld returned 1 exit status configure:5790: $? =3D 1 configure: program exited with status 1 configure: failed program was: | /* confdefs.h */ " Looks like the checker program ( "confdefs.h") did not have an uptodate ide= a of what the x86_64 architecture should have or not have, but I may be qui= te wrong. While there are other 'failed' "confdefs.h" program examples in this config= .log, even an amateur like me was unsurprised by: "conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or director= y" I mean, who would have thought ac_nonexistent.h would have no file or direc= tory?=20=20 (That's another of my poor attempts at a joke), and I do appreciate your he= lp and patience! Bruce ******** Paste of contents of ~/tmp/gcc46/gcc/config.log 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 $ /Users/bhoglund/tmp/gcc-4.6.1/gcc/configure --cache-file=3D./config.cac= he --enable-threads --with-cpu-64=3Dx86-64 --with-gmp-lib=3D/usr/local/lib/= --with-mpfr-lib=3D/usr/local/lib/ --with-mpc-lib=3D/usr/local/lib/ --enabl= e-languages=3Dc,c++,fortran,java,objc --program-transform-name=3Ds,y,y, --d= isable-option-checking --build=3Dx86_64-apple-darwin11.1.0 --host=3Dx86_64-= apple-darwin11.1.0 --target=3Dx86_64-apple-darwin11.1.0 --srcdir=3D/Users/b= hoglund/tmp/gcc-4.6.1/gcc --disable-intermodule --enable-checking=3Dyes,typ= es --disable-coverage --enable-languages=3Dc ## --------- ## ## Platform. ## ## --------- ## hostname =3D brucesimac.home uname -m =3D x86_64 uname -r =3D 11.1.0 uname -s =3D Darwin uname -v =3D Darwin Kernel Version 11.1.0: Tue Jul 26 16:07:11 PDT 2011; ro= ot:xnu-1699.22.81~1/RELEASE_X86_64 /usr/bin/uname -p =3D i386 /bin/uname -X =3D unknown /bin/arch =3D unknown /usr/bin/arch -k =3D unknown /usr/convex/getsysinfo =3D unknown /usr/bin/hostinfo =3D Mach kernel version: Darwin Kernel Version 11.1.0: Tue Jul 26 16:07:11 PDT 2011; root:xnu-1699= .22.81~1/RELEASE_X86_64 Kernel configured for up to 2 processors. 2 processors are physically available. 2 processors are logically available. Processor type: i486 (Intel 80486) Processors active: 0 1 Primary memory available: 8.00 gigabytes Default processor set: 131 tasks, 470 threads, 2 processors Load average: 2.28, Mach factor: 0.71 /bin/machine =3D unknown /usr/bin/oslevel =3D unknown /bin/universe =3D unknown PATH: /opt/local/bin PATH: /opt/local/sbin PATH: /opt/local/bin PATH: /opt/local/sbin PATH: /opt/local/bin PATH: /opt/local/sbin PATH: /Users/bhoglund/LANL/MCNP5/bin PATH: /opt/local/bin PATH: /opt/local/sbin PATH: /usr/bin PATH: /bin PATH: /usr/sbin PATH: /sbin PATH: /usr/local/bin PATH: /usr/X11/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2925: creating cache ./config.cache configure:3035: checking build system type configure:3049: result: x86_64-apple-darwin11.1.0 configure:3069: checking host system type configure:3082: result: x86_64-apple-darwin11.1.0 configure:3102: checking target system type configure:3115: result: x86_64-apple-darwin11.1.0 configure:3213: checking LIBRARY_PATH variable configure:3223: result: ok configure:3239: checking GCC_EXEC_PREFIX variable configure:3249: result: ok configure:3326: checking whether to place generated files in the source dir= ectory configure:3336: result: no configure:3387: checking whether a default linker was specified configure:3398: result: no configure:3452: checking whether a default assembler was specified configure:3463: result: no configure:3489: checking for x86_64-apple-darwin11.1.0-gcc configure:3516: result: gcc configure:3785: checking for C compiler version configure:3794: gcc --version >&5 gcc (GCC) 4.5.3 Copyright (C) 2010 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:3805: $? =3D 0 configure:3794: gcc -v >&5 Using built-in specs. COLLECT_GCC=3Dgcc COLLECT_LTO_WRAPPER=3D/opt/local/libexec/gcc/x86_64-apple-darwin11/4.5.3/lt= o-wrapper Target: x86_64-apple-darwin11 Configured with: ../gcc-4.5.3/configure --prefix=3D/opt/local --build=3Dx86= _64-apple-darwin11 --enable-languages=3Dc,c++,objc,obj-c++,fortran,java --l= ibdir=3D/opt/local/lib/gcc45 --includedir=3D/opt/local/include/gcc45 --info= dir=3D/opt/local/share/info --mandir=3D/opt/local/share/man --datarootdir= =3D/opt/local/share/gcc-4.5 --with-local-prefix=3D/opt/local --with-system-= zlib --disable-nls --program-suffix=3D-mp-4.5 --with-gxx-include-dir=3D/opt= /local/include/gcc45/c++/ --with-gmp=3D/opt/local --with-mpfr=3D/opt/local = --with-mpc=3D/opt/local --enable-stage1-checking --disable-multilib --enabl= e-fully-dynamic-string Thread model: posix gcc version 4.5.3 (GCC)=20 configure:3805: $? =3D 0 configure:3794: gcc -V >&5 gcc: '-V' option must have argument configure:3805: $? =3D 1 configure:3794: gcc -qversion >&5 gcc: unrecognized option '-qversion' gcc: no input files configure:3805: $? =3D 1 configure:3825: checking for C compiler default output file name configure:3847: gcc -g -fkeep-inline-functions conftest.c >&5 configure:3851: $? =3D 0 configure:3888: result: a.out configure:3904: checking whether the C compiler works configure:3913: ./a.out configure:3917: $? =3D 0 configure:3932: result: yes configure:3939: checking whether we are cross compiling configure:3941: result: no configure:3944: checking for suffix of executables configure:3951: gcc -o conftest -g -fkeep-inline-functions conftest.c >= &5 configure:3955: $? =3D 0 configure:3977: result:=20 configure:3983: checking for suffix of object files configure:4005: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:4009: $? =3D 0 configure:4030: result: o configure:4034: checking whether we are using the GNU C compiler configure:4053: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:4053: $? =3D 0 configure:4062: result: yes configure:4071: checking whether gcc accepts -g configure:4091: gcc -c -g conftest.c >&5 configure:4091: $? =3D 0 configure:4132: result: yes configure:4149: checking for gcc option to accept ISO C89 configure:4213: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:4213: $? =3D 0 configure:4226: result: none needed configure:4247: checking whether gcc and cc understand -c and -o together configure:4278: gcc -c conftest.c -o conftest2.o >&5 configure:4282: $? =3D 0 configure:4288: gcc -c conftest.c -o conftest2.o >&5 configure:4292: $? =3D 0 configure:4303: cc -c conftest.c >&5 configure:4307: $? =3D 0 configure:4315: cc -c conftest.c -o conftest2.o >&5 configure:4319: $? =3D 0 configure:4325: cc -c conftest.c -o conftest2.o >&5 configure:4329: $? =3D 0 configure:4347: result: yes configure:4487: checking for C++ compiler version configure:4496: g++ --version >&5 g++ (GCC) 4.5.3 Copyright (C) 2010 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:4507: $? =3D 0 configure:4496: g++ -v >&5 Using built-in specs. COLLECT_GCC=3Dg++ COLLECT_LTO_WRAPPER=3D/opt/local/libexec/gcc/x86_64-apple-darwin11/4.5.3/lt= o-wrapper Target: x86_64-apple-darwin11 Configured with: ../gcc-4.5.3/configure --prefix=3D/opt/local --build=3Dx86= _64-apple-darwin11 --enable-languages=3Dc,c++,objc,obj-c++,fortran,java --l= ibdir=3D/opt/local/lib/gcc45 --includedir=3D/opt/local/include/gcc45 --info= dir=3D/opt/local/share/info --mandir=3D/opt/local/share/man --datarootdir= =3D/opt/local/share/gcc-4.5 --with-local-prefix=3D/opt/local --with-system-= zlib --disable-nls --program-suffix=3D-mp-4.5 --with-gxx-include-dir=3D/opt= /local/include/gcc45/c++/ --with-gmp=3D/opt/local --with-mpfr=3D/opt/local = --with-mpc=3D/opt/local --enable-stage1-checking --disable-multilib --enabl= e-fully-dynamic-string Thread model: posix gcc version 4.5.3 (GCC)=20 configure:4507: $? =3D 0 configure:4496: g++ -V >&5 g++: '-V' option must have argument configure:4507: $? =3D 1 configure:4496: g++ -qversion >&5 g++: unrecognized option '-qversion' g++: no input files configure:4507: $? =3D 1 configure:4511: checking whether we are using the GNU C++ compiler configure:4530: g++ -c -g -O2 conftest.cpp >&5 configure:4530: $? =3D 0 configure:4539: result: yes configure:4548: checking whether g++ accepts -g configure:4568: g++ -c -g conftest.cpp >&5 configure:4568: $? =3D 0 configure:4609: result: yes configure:4638: checking for x86_64-apple-darwin11.1.0-gnatbind configure:4665: result: no configure:4730: checking for x86_64-apple-darwin11.1.0-gnatmake configure:4757: result: no configure:4819: checking whether compiler driver understands Ada configure:4842: result: no configure:4879: checking how to run the C preprocessor configure:4910: gcc -E conftest.c configure:4910: $? =3D 0 configure:4924: gcc -E conftest.c conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:4924: $? =3D 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define HAVE_GNU_LD 0 | #define HAVE_GNU_AS 0 | /* end confdefs.h. */ | #include configure:4949: result: gcc -E configure:4969: gcc -E conftest.c configure:4969: $? =3D 0 configure:4983: gcc -E conftest.c conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:4983: $? =3D 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define HAVE_GNU_LD 0 | #define HAVE_GNU_AS 0 | /* end confdefs.h. */ | #include configure:5012: checking for grep that handles long lines and -e configure:5070: result: /usr/bin/grep configure:5075: checking for egrep configure:5137: result: /usr/bin/grep -E configure:5142: checking for ANSI C header files configure:5162: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5162: $? =3D 0 configure:5235: gcc -o conftest -g -fkeep-inline-functions conftest.c >= &5 configure:5235: $? =3D 0 configure:5235: ./conftest configure:5235: $? =3D 0 configure:5246: result: yes configure:5259: checking for sys/types.h configure:5259: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5259: $? =3D 0 configure:5259: result: yes configure:5259: checking for sys/stat.h configure:5259: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5259: $? =3D 0 configure:5259: result: yes configure:5259: checking for stdlib.h configure:5259: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5259: $? =3D 0 configure:5259: result: yes configure:5259: checking for string.h configure:5259: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5259: $? =3D 0 configure:5259: result: yes configure:5259: checking for memory.h configure:5259: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5259: $? =3D 0 configure:5259: result: yes configure:5259: checking for strings.h configure:5259: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5259: $? =3D 0 configure:5259: result: yes configure:5259: checking for inttypes.h configure:5259: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5259: $? =3D 0 configure:5259: result: yes configure:5259: checking for stdint.h configure:5259: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5259: $? =3D 0 configure:5259: result: yes configure:5259: checking for unistd.h configure:5259: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5259: $? =3D 0 configure:5259: result: yes configure:5273: checking minix/config.h usability configure:5273: gcc -c -g -fkeep-inline-functions conftest.c >&5 conftest.c:54:26: fatal error: minix/config.h: No such file or directory compilation terminated. configure:5273: $? =3D 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define HAVE_GNU_LD 0 | #define HAVE_GNU_AS 0 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | #include configure:5273: result: no configure:5273: checking minix/config.h presence configure:5273: gcc -E conftest.c conftest.c:21:26: fatal error: minix/config.h: No such file or directory compilation terminated. configure:5273: $? =3D 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define HAVE_GNU_LD 0 | #define HAVE_GNU_AS 0 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | /* end confdefs.h. */ | #include configure:5273: result: no configure:5273: checking for minix/config.h configure:5273: result: no configure:5294: checking whether it is safe to define __EXTENSIONS__ configure:5312: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5312: $? =3D 0 configure:5319: result: yes configure:5338: checking how to run the C preprocessor configure:5408: result: gcc -E configure:5428: gcc -E conftest.c configure:5428: $? =3D 0 configure:5442: gcc -E conftest.c conftest.c:26:28: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:5442: $? =3D 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define HAVE_GNU_LD 0 | #define HAVE_GNU_AS 0 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | /* end confdefs.h. */ | #include configure:5470: checking for inline configure:5486: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5486: $? =3D 0 configure:5494: result: inline configure:5520: checking for special C compiler options needed for large fi= les configure:5565: result: no configure:5571: checking for _FILE_OFFSET_BITS value needed for large files configure:5596: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5596: $? =3D 0 configure:5628: result: no configure:5717: checking size of void * configure:5722: gcc -o conftest -g -fkeep-inline-functions conftest.c >= &5 Undefined symbols for architecture x86_64: "___builtin___stpncpy_chk", referenced from: ___inline_stpncpy_chk in ccGucDTA.o ld: symbol(s) not found for architecture x86_64 collect2: ld returned 1 exit status configure:5722: $? =3D 1 configure: program exited with status 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define HAVE_GNU_LD 0 | #define HAVE_GNU_AS 0 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | static long int longval () { return (long int) (sizeof (void *)); } | static unsigned long int ulongval () { return (long int) (sizeof (void *)= ); } | #include | #include | int | main () | { |=20 | FILE *f =3D fopen ("conftest.val", "w"); | if (! f) | return 1; | if (((long int) (sizeof (void *))) < 0) | { | long int i =3D longval (); | if (i !=3D ((long int) (sizeof (void *)))) | return 1; | fprintf (f, "%ld", i); | } | else | { | unsigned long int i =3D ulongval (); | if (i !=3D ((long int) (sizeof (void *)))) | return 1; | fprintf (f, "%lu", i); | } | /* Do not output a trailing newline, as this causes \r\n confusion | on some platforms. */ | return ferror (f) || fclose (f) !=3D 0; |=20 | ; | return 0; | } configure:5737: result: 0 configure:5751: checking size of short configure:5756: gcc -o conftest -g -fkeep-inline-functions conftest.c >= &5 Undefined symbols for architecture x86_64: "___builtin___stpncpy_chk", referenced from: ___inline_stpncpy_chk in ccH3S7V1.o ld: symbol(s) not found for architecture x86_64 collect2: ld returned 1 exit status configure:5756: $? =3D 1 configure: program exited with status 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define HAVE_GNU_LD 0 | #define HAVE_GNU_AS 0 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define SIZEOF_VOID_P 0 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | static long int longval () { return (long int) (sizeof (short)); } | static unsigned long int ulongval () { return (long int) (sizeof (short))= ; } | #include | #include | int | main () | { |=20 | FILE *f =3D fopen ("conftest.val", "w"); | if (! f) | return 1; | if (((long int) (sizeof (short))) < 0) | { | long int i =3D longval (); | if (i !=3D ((long int) (sizeof (short)))) | return 1; | fprintf (f, "%ld", i); | } | else | { | unsigned long int i =3D ulongval (); | if (i !=3D ((long int) (sizeof (short)))) | return 1; | fprintf (f, "%lu", i); | } | /* Do not output a trailing newline, as this causes \r\n confusion | on some platforms. */ | return ferror (f) || fclose (f) !=3D 0; |=20 | ; | return 0; | } configure:5771: result: 0 configure:5785: checking size of int configure:5790: gcc -o conftest -g -fkeep-inline-functions conftest.c >= &5 Undefined symbols for architecture x86_64: "___builtin___stpncpy_chk", referenced from: ___inline_stpncpy_chk in ccL1VweA.o ld: symbol(s) not found for architecture x86_64 collect2: ld returned 1 exit status configure:5790: $? =3D 1 configure: program exited with status 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define HAVE_GNU_LD 0 | #define HAVE_GNU_AS 0 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define SIZEOF_VOID_P 0 | #define SIZEOF_SHORT 0 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | static long int longval () { return (long int) (sizeof (int)); } | static unsigned long int ulongval () { return (long int) (sizeof (int)); } | #include | #include | int | main () | { |=20 | FILE *f =3D fopen ("conftest.val", "w"); | if (! f) | return 1; | if (((long int) (sizeof (int))) < 0) | { | long int i =3D longval (); | if (i !=3D ((long int) (sizeof (int)))) | return 1; | fprintf (f, "%ld", i); | } | else | { | unsigned long int i =3D ulongval (); | if (i !=3D ((long int) (sizeof (int)))) | return 1; | fprintf (f, "%lu", i); | } | /* Do not output a trailing newline, as this causes \r\n confusion | on some platforms. */ | return ferror (f) || fclose (f) !=3D 0; |=20 | ; | return 0; | } configure:5805: result: 0 configure:5819: checking size of long configure:5824: gcc -o conftest -g -fkeep-inline-functions conftest.c >= &5 Undefined symbols for architecture x86_64: "___builtin___stpncpy_chk", referenced from: ___inline_stpncpy_chk in ccGghcUA.o ld: symbol(s) not found for architecture x86_64 collect2: ld returned 1 exit status configure:5824: $? =3D 1 configure: program exited with status 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define HAVE_GNU_LD 0 | #define HAVE_GNU_AS 0 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define SIZEOF_VOID_P 0 | #define SIZEOF_SHORT 0 | #define SIZEOF_INT 0 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | static long int longval () { return (long int) (sizeof (long)); } | static unsigned long int ulongval () { return (long int) (sizeof (long));= } | #include | #include | int | main () | { |=20 | FILE *f =3D fopen ("conftest.val", "w"); | if (! f) | return 1; | if (((long int) (sizeof (long))) < 0) | { | long int i =3D longval (); | if (i !=3D ((long int) (sizeof (long)))) | return 1; | fprintf (f, "%ld", i); | } | else | { | unsigned long int i =3D ulongval (); | if (i !=3D ((long int) (sizeof (long)))) | return 1; | fprintf (f, "%lu", i); | } | /* Do not output a trailing newline, as this causes \r\n confusion | on some platforms. */ | return ferror (f) || fclose (f) !=3D 0; |=20 | ; | return 0; | } configure:5839: result: 0 configure:5849: checking for long long configure:5849: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5849: $? =3D 0 configure:5849: gcc -c -g -fkeep-inline-functions conftest.c >&5 conftest.c: In function 'main': conftest.c:66:24: error: expected expression before ')' token configure:5849: $? =3D 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define HAVE_GNU_LD 0 | #define HAVE_GNU_AS 0 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define SIZEOF_VOID_P 0 | #define SIZEOF_SHORT 0 | #define SIZEOF_INT 0 | #define SIZEOF_LONG 0 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | int | main () | { | if (sizeof ((long long))) | return 0; | ; | return 0; | } configure:5849: result: yes configure:5860: checking size of long long configure:5865: gcc -o conftest -g -fkeep-inline-functions conftest.c >= &5 Undefined symbols for architecture x86_64: "___builtin___stpncpy_chk", referenced from: ___inline_stpncpy_chk in ccgKlH4s.o ld: symbol(s) not found for architecture x86_64 collect2: ld returned 1 exit status configure:5865: $? =3D 1 configure: program exited with status 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "" | #define HAVE_GNU_LD 0 | #define HAVE_GNU_AS 0 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define SIZEOF_VOID_P 0 | #define SIZEOF_SHORT 0 | #define SIZEOF_INT 0 | #define SIZEOF_LONG 0 | #define HAVE_LONG_LONG 1 | /* end confdefs.h. */ | #include | #ifdef HAVE_SYS_TYPES_H | # include | #endif | #ifdef HAVE_SYS_STAT_H | # include | #endif | #ifdef STDC_HEADERS | # include | # include | #else | # ifdef HAVE_STDLIB_H | # include | # endif | #endif | #ifdef HAVE_STRING_H | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | # include | # endif | # include | #endif | #ifdef HAVE_STRINGS_H | # include | #endif | #ifdef HAVE_INTTYPES_H | # include | #endif | #ifdef HAVE_STDINT_H | # include | #endif | #ifdef HAVE_UNISTD_H | # include | #endif | static long int longval () { return (long int) (sizeof (long long)); } | static unsigned long int ulongval () { return (long int) (sizeof (long lo= ng)); } | #include | #include | int | main () | { |=20 | FILE *f =3D fopen ("conftest.val", "w"); | if (! f) | return 1; | if (((long int) (sizeof (long long))) < 0) | { | long int i =3D longval (); | if (i !=3D ((long int) (sizeof (long long)))) | return 1; | fprintf (f, "%ld", i); | } | else | { | unsigned long int i =3D ulongval (); | if (i !=3D ((long int) (sizeof (long long)))) | return 1; | fprintf (f, "%lu", i); | } | /* Do not output a trailing newline, as this causes \r\n confusion | on some platforms. */ | return ferror (f) || fclose (f) !=3D 0; |=20 | ; | return 0; | } configure:5869: error: in `/Users/bhoglund/tmp/gcc46/gcc': configure:5873: error: cannot compute sizeof (long long) See `config.log' for more details. ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=3Dx86_64-apple-darwin11.1.0 ac_cv_c_compiler_gnu=3Dyes ac_cv_c_inline=3Dinline ac_cv_cxx_compiler_gnu=3Dyes ac_cv_env_CCC_set=3D ac_cv_env_CCC_value=3D ac_cv_env_CC_set=3Dset ac_cv_env_CC_value=3Dgcc ac_cv_env_CFLAGS_set=3Dset ac_cv_env_CFLAGS_value=3D'-g -fkeep-inline-functions' ac_cv_env_CLOOGINC_set=3Dset ac_cv_env_CLOOGINC_value=3D ac_cv_env_CLOOGLIBS_set=3Dset ac_cv_env_CLOOGLIBS_value=3D ac_cv_env_CPPFLAGS_set=3D ac_cv_env_CPPFLAGS_value=3D ac_cv_env_CPP_set=3D ac_cv_env_CPP_value=3D ac_cv_env_CXXCPP_set=3D ac_cv_env_CXXCPP_value=3D ac_cv_env_CXXFLAGS_set=3Dset ac_cv_env_CXXFLAGS_value=3D'-g -O2' ac_cv_env_CXX_set=3Dset ac_cv_env_CXX_value=3Dg++ ac_cv_env_GMPINC_set=3Dset ac_cv_env_GMPINC_value=3D ac_cv_env_GMPLIBS_set=3Dset ac_cv_env_GMPLIBS_value=3D'-L/usr/local/lib/ -L/usr/local/lib/ -L/usr/local= /lib/ -lmpc -lmpfr -lgmp' ac_cv_env_LDFLAGS_set=3Dset ac_cv_env_LDFLAGS_value=3D' ' ac_cv_env_LIBS_set=3D ac_cv_env_LIBS_value=3D ac_cv_env_PPLINC_set=3Dset ac_cv_env_PPLINC_value=3D ac_cv_env_PPLLIBS_set=3Dset ac_cv_env_PPLLIBS_value=3D ac_cv_env_build_alias_set=3Dset ac_cv_env_build_alias_value=3Dx86_64-apple-darwin11.1.0 ac_cv_env_host_alias_set=3Dset ac_cv_env_host_alias_value=3Dx86_64-apple-darwin11.1.0 ac_cv_env_target_alias_set=3Dset ac_cv_env_target_alias_value=3Dx86_64-apple-darwin11.1.0 ac_cv_header_inttypes_h=3Dyes ac_cv_header_memory_h=3Dyes ac_cv_header_minix_config_h=3Dno ac_cv_header_stdc=3Dyes ac_cv_header_stdint_h=3Dyes ac_cv_header_stdlib_h=3Dyes ac_cv_header_string_h=3Dyes ac_cv_header_strings_h=3Dyes ac_cv_header_sys_stat_h=3Dyes ac_cv_header_sys_types_h=3Dyes ac_cv_header_unistd_h=3Dyes ac_cv_host=3Dx86_64-apple-darwin11.1.0 ac_cv_objext=3Do ac_cv_path_EGREP=3D'/usr/bin/grep -E' ac_cv_path_GREP=3D/usr/bin/grep ac_cv_prog_CC=3Dgcc ac_cv_prog_CPP=3D'gcc -E' ac_cv_prog_GNATBIND=3Dno ac_cv_prog_GNATMAKE=3Dno ac_cv_prog_cc_c89=3D ac_cv_prog_cc_g=3Dyes ac_cv_prog_cc_gcc_c_o=3Dyes ac_cv_prog_cxx_g=3Dyes ac_cv_safe_to_define___extensions__=3Dyes ac_cv_sizeof_int=3D0 ac_cv_sizeof_long=3D0 ac_cv_sizeof_short=3D0 ac_cv_sizeof_void_p=3D0 ac_cv_sys_file_offset_bits=3Dno ac_cv_sys_largefile_CC=3Dno ac_cv_target=3Dx86_64-apple-darwin11.1.0 ac_cv_type_long_long=3Dyes acx_cv_cc_gcc_supports_ada=3Dno ## ----------------- ## ## Output variables. ## ## ----------------- ## ALL=3D'' AR=3D'ar' AWK=3D'awk' BISON=3D'bison' BUILD_CFLAGS=3D'' BUILD_INFO=3D'' BUILD_LDFLAGS=3D'' CATALOGS=3D'' CATOBJEXT=3D'' CC=3D'gcc' CC_FOR_BUILD=3D'gcc' CFLAGS=3D'-g -fkeep-inline-functions' CLOOGINC=3D'' CLOOGLIBS=3D'' COLLECT2_LIBS=3D'' CONFIGURE_SPECS=3D'' CPP=3D'gcc -E' CPPFLAGS=3D'' CROSS=3D'' CROSS_SYSTEM_HEADER_DIR=3D'' CXX=3D'g++' CXXCPP=3D'' CXXFLAGS=3D'-g -O2' DATADIRNAME=3D'' DEFS=3D'' DSYMUTIL=3D'' DUMPBIN=3D'' ECHO_C=3D'\c' ECHO_N=3D'' ECHO_T=3D'' EGREP=3D'/usr/bin/grep -E' ENABLE_BUILD_WITH_CXX=3D'' EXEEXT=3D'' FGREP=3D'' FLEX=3D'flex' GENCAT=3D'' GENERATED_MANPAGES=3D'' GENINSRC=3D'#' GGC=3D'' GMPINC=3D'' GMPLIBS=3D'-L/usr/local/lib/ -L/usr/local/lib/ -L/usr/local/lib/ -lmpc -lmp= fr -lgmp' GMSGFMT=3D'' GNATBIND=3D'no' GNATMAKE=3D'no' GNAT_LIBEXC=3D'' GREP=3D'/usr/bin/grep' HOST_LIBS=3D'' INCINTL=3D'' INSTALL=3D'/usr/bin/install -c' INSTALL_DATA=3D'/usr/bin/install -c -m 644' INSTALL_PROGRAM=3D'/usr/bin/install -c' INSTOBJEXT=3D'' LD=3D'ld' LDEXP_LIB=3D'' LDFLAGS=3D' ' LIBICONV=3D'' LIBICONV_DEP=3D'' LIBINTL=3D'' LIBINTL_DEP=3D'' LIBOBJS=3D'' LIBS=3D'' LIBTOOL=3D'' LIPO=3D'' LN=3D'' LN_S=3D'' LTLIBICONV=3D'' LTLIBOBJS=3D'' MAINT=3D'' MAKEINFO=3D'makeinfo --split-size=3D5000000 --split-size=3D5000000' NM=3D'nm' NMEDIT=3D'' NO_MINUS_C_MINUS_O=3D'' OBJDUMP=3D'objdump' OBJEXT=3D'o' ORIGINAL_AS_FOR_TARGET=3D'' ORIGINAL_LD_FOR_TARGET=3D'' ORIGINAL_NM_FOR_TARGET=3D'' ORIGINAL_PLUGIN_LD_FOR_TARGET=3D'' OTOOL64=3D'' OTOOL=3D'' OUTPUT_OPTION=3D'-o $@' PACKAGE_BUGREPORT=3D'' PACKAGE_NAME=3D'' PACKAGE_STRING=3D'' PACKAGE_TARNAME=3D'' PACKAGE_URL=3D'' PACKAGE_VERSION=3D'' PATH_SEPARATOR=3D':' PKGVERSION=3D'' POSUB=3D'' PPLINC=3D'' PPLLIBS=3D'' RANLIB=3D'ranlib' REPORT_BUGS_TEXI=3D'' REPORT_BUGS_TO=3D'' SED=3D'/usr/bin/sed' SET_MAKE=3D'' SHELL=3D'/bin/sh' STMP_FIXINC=3D'' STRIP=3D'' SYSTEM_HEADER_DIR=3D'' TARGET_SYSTEM_ROOT=3D'' TARGET_SYSTEM_ROOT_DEFINE=3D'' TM_ENDIAN_CONFIG=3D'' TM_MULTILIB_CONFIG=3D'' TM_MULTILIB_EXCEPTIONS_CONFIG=3D'' TREEBROWSER=3D'' USE_NLS=3D'' XGETTEXT=3D'' ac_ct_CC=3D'' ac_ct_CXX=3D'' ac_ct_DUMPBIN=3D'' all_compilers=3D'' all_gtfiles=3D'' all_lang_makefrags=3D'' all_languages=3D'' all_selected_languages=3D'' bindir=3D'${exec_prefix}/bin' build=3D'x86_64-apple-darwin11.1.0' build_alias=3D'x86_64-apple-darwin11.1.0' build_cpu=3D'x86_64' build_exeext=3D'' build_file_translate=3D'' build_install_headers_dir=3D'' build_libsubdir=3D'build-x86_64-apple-darwin11.1.0' build_os=3D'darwin11.1.0' build_subdir=3D'build-x86_64-apple-darwin11.1.0' build_vendor=3D'apple' build_xm_defines=3D'' build_xm_file_list=3D'' build_xm_include_list=3D'' c_loose_warn=3D'' c_strict_warn=3D'' c_target_objs=3D'' check_languages=3D'' collect2=3D'' coverage_flags=3D'' cpp_install_dir=3D'' cxx_target_objs=3D'' datadir=3D'${datarootdir}' datarootdir=3D'${prefix}/share' docdir=3D'${datarootdir}/doc/${PACKAGE}' dollar=3D'' dvidir=3D'${docdir}' enable_decimal_float=3D'' enable_fast_install=3D'' enable_fixed_point=3D'' enable_lto=3D'' enable_multilib=3D'' enable_plugin=3D'' enable_shared=3D'' exec_prefix=3D'NONE' extra_gcc_objs=3D'' extra_headers_list=3D'' extra_modes_file=3D'' extra_objs=3D'' extra_opt_files=3D'' extra_parts=3D'' extra_passes=3D'' extra_programs=3D'' float_h_file=3D'' fortran_target_objs=3D'' gcc_config_arguments=3D'' gcc_cv_as=3D'' gcc_cv_ld=3D'' gcc_cv_nm=3D'' gcc_cv_objdump=3D'' gcc_cv_readelf=3D'' gcc_gxx_include_dir=3D'$(libsubdir)/$(libsubdir_to_prefix)include/c++/$(ver= sion)' gcc_tooldir=3D'' gthread_flags=3D'' have_mktemp_command=3D'' host=3D'x86_64-apple-darwin11.1.0' host_alias=3D'x86_64-apple-darwin11.1.0' host_cpu=3D'x86_64' host_exeext=3D'' host_os=3D'darwin11.1.0' host_subdir=3D'.' host_vendor=3D'apple' host_xm_defines=3D'' host_xm_file_list=3D'' host_xm_include_list=3D'' htmldir=3D'${docdir}' includedir=3D'${prefix}/include' infodir=3D'${datarootdir}/info' inhibit_libc=3D'' install=3D'' lang_opt_files=3D'' lang_specs_files=3D'' lang_tree_files=3D'' libdir=3D'${exec_prefix}/lib' libexecdir=3D'${exec_prefix}/libexec' libgcc_visibility=3D'' local_prefix=3D'/usr/local' localedir=3D'${datarootdir}/locale' localstatedir=3D'${prefix}/var' loose_warn=3D'' make_compare_target=3D'' mandir=3D'${datarootdir}/man' manext=3D'' md_file=3D'' nocommon_flag=3D'' objc_boehm_gc=3D'' objdir=3D'' objext=3D'' oldincludedir=3D'/usr/include' out_file=3D'' out_host_hook_obj=3D'' out_object_file=3D'' pdfdir=3D'${docdir}' pluginlibs=3D'' prefix=3D'NONE' program_transform_name=3D's,y,y,' psdir=3D'${docdir}' ranlib_flags=3D'' sbindir=3D'${exec_prefix}/sbin' sharedstatedir=3D'${prefix}/com' slibdir=3D'' srcdir=3D'/Users/bhoglund/tmp/gcc-4.6.1/gcc' strict_warn=3D'' subdirs=3D'' sysconfdir=3D'${prefix}/etc' target=3D'x86_64-apple-darwin11.1.0' target_alias=3D'x86_64-apple-darwin11.1.0' target_cpu=3D'x86_64' target_cpu_default=3D'' target_noncanonical=3D'x86_64-apple-darwin11.1.0' target_os=3D'darwin11.1.0' target_subdir=3D'x86_64-apple-darwin11.1.0' target_vendor=3D'apple' thread_file=3D'' tm_defines=3D'' tm_file_list=3D'' tm_include_list=3D'' tm_p_file_list=3D'' tm_p_include_list=3D'' tmake_file=3D'' use_gcc_stdint=3D'' user_headers_inc_next_post=3D'' user_headers_inc_next_pre=3D'' valgrind_command=3D'' valgrind_path=3D'' valgrind_path_defines=3D'' warn_cflags=3D'' warn_cxxflags=3D'' xm_defines=3D'' xm_file_list=3D'' xm_include_list=3D'' xmake_file=3D'' zlibdir=3D'' zlibinc=3D'' ## ------------------- ## ## File substitutions. ## ## ------------------- ## language_hooks=3D'' option_includes=3D'' ## ----------- ## ## confdefs.h. ## ## ----------- ## /* confdefs.h */ #define PACKAGE_NAME "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION "" #define PACKAGE_STRING "" #define PACKAGE_BUGREPORT "" #define PACKAGE_URL "" #define HAVE_GNU_LD 0 #define HAVE_GNU_AS 0 #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_MEMORY_H 1 #define HAVE_STRINGS_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_STDINT_H 1 #define HAVE_UNISTD_H 1 #define __EXTENSIONS__ 1 #define _ALL_SOURCE 1 #define _GNU_SOURCE 1 #define _POSIX_PTHREAD_SEMANTICS 1 #define _TANDEM_SOURCE 1 #define SIZEOF_VOID_P 0 #define SIZEOF_SHORT 0 #define SIZEOF_INT 0 #define SIZEOF_LONG 0 #define HAVE_LONG_LONG 1 configure: exit 77