From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23093 invoked by alias); 7 Sep 2011 15:26:04 -0000 Received: (qmail 23077 invoked by uid 22791); 7 Sep 2011 15:26:02 -0000 X-SWARE-Spam-Status: No, hits=-0.7 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_SOFTFAIL X-Spam-Check-By: sourceware.org Received: from elasmtp-kukur.atl.sa.earthlink.net (HELO elasmtp-kukur.atl.sa.earthlink.net) (209.86.89.65) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 07 Sep 2011 15:25:45 +0000 Received: from [71.163.33.18] (helo=brucesimac.home) by elasmtp-kukur.atl.sa.earthlink.net with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.67) (envelope-from ) id 1R1K0W-0000mk-4O; Wed, 07 Sep 2011 11:25:44 -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: multipart/mixed; boundary="Apple-Mail=_78FBBE01-D06F-45A7-8C73-B5353D40E360" From: Bruce Hoglund In-Reply-To: Date: Wed, 07 Sep 2011 15:26:00 -0000 Cc: gcc-help@gcc.gnu.org Message-Id: <9F6678FD-0983-49A0-886F-5C165FEF2AE9@mac.com> References: <76A9B64F-3A3E-451E-BC23-EB4580B9875F@mac.com> <563FFE3F-C083-4668-B459-EF4D00E4EECB@mac.com> <6A491C25-3199-49FA-A2A1-447CD041148F@mac.com> To: Jonathan Wakely X-ELNK-Trace: 9276e8c789f3a5f61aa676d7e74259b7b3291a7d08dfec79fd23d2b8a10f7bc00d1dbffb72adc864350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c 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/msg00056.txt.bz2 --Apple-Mail=_78FBBE01-D06F-45A7-8C73-B5353D40E360 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=windows-1252 Content-length: 3633 On Sep 7, 2011, at 10:02 AM, Jonathan Wakely wrote: > On 7 September 2011 14:52, Bruce Hoglund wrote: >>=20 >> On Sep 7, 2011, at 4:27 AM, Jonathan Wakely wrote: >>=20 >>> On 7 September 2011 06:06, Ian Lance Taylor wrote: >>>> This is probably the wrong config.log file. You need the one in the >>>> directory in which configure is being run. In this case, >>>> gcc/config.log. >>>>=20 >>>> In general, the bottommost parts of config.log are not helpful. You >>>> need to look for the failing test. >>>=20 >>> Which to remind you, was: >>> configure: error: cannot compute sizeof (long long) >>=20 >>=20 >> Yes, thank you. >>=20 >> I simplistically searched for the string "long" & it was not found in th= e config.log. As a guess, I'd say the failure to compute the size of the lo= ng long was a collateral damage effect from some other failure, such as the= one I sent Ian: >=20 > No, you looked in the wrong config.log >=20 > As Ian said, you need to look for config.log in the directory where > configure is being run, that is NOT necessarily the directory where > YOU ran configure. When you run the top-level configure it > recursively runs configure scripts in sub-directories. One of those > failed. >=20 > In your case it says there is an error in /Users/bhoglund/tmp/gcc46/gcc: >=20 > checking size of long long... configure: error: in > `/Users/bhoglund/tmp/gcc46/gcc': > configure: error: cannot compute sizeof (long long) > See `config.log' for more details. >=20 > So that's the directory where you need to look in config.log, which as > Ian said is gcc/config.log >=20 > Look in there, you will find the "cannot compute sizeof (long long)" > error, with more details. I have attached the ~/tmp/gcc46/gcc/config.log file. As for understanding=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 w the x86_64 architecture should have or not have, but I may be quite = 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 --Apple-Mail=_78FBBE01-D06F-45A7-8C73-B5353D40E360 Content-Disposition: attachment; filename=config.log Content-Type: application/octet-stream; name="config.log" Content-Transfer-Encoding: 7bit Content-length: 38246 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=./config.cache --enable-threads --with-cpu-64=x86-64 --with-gmp-lib=/usr/local/lib/ --with-mpfr-lib=/usr/local/lib/ --with-mpc-lib=/usr/local/lib/ --enable-languages=c,c++,fortran,java,objc --program-transform-name=s,y,y, --disable-option-checking --build=x86_64-apple-darwin11.1.0 --host=x86_64-apple-darwin11.1.0 --target=x86_64-apple-darwin11.1.0 --srcdir=/Users/bhoglund/tmp/gcc-4.6.1/gcc --disable-intermodule --enable-checking=yes,types --disable-coverage --enable-languages=c ## --------- ## ## Platform. ## ## --------- ## hostname = brucesimac.home uname -m = x86_64 uname -r = 11.1.0 uname -s = Darwin uname -v = Darwin Kernel Version 11.1.0: Tue Jul 26 16:07:11 PDT 2011; root:xnu-1699.22.81~1/RELEASE_X86_64 /usr/bin/uname -p = i386 /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = 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 = unknown /usr/bin/oslevel = unknown /bin/universe = 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 directory 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: $? = 0 configure:3794: gcc -v >&5 Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/opt/local/libexec/gcc/x86_64-apple-darwin11/4.5.3/lto-wrapper Target: x86_64-apple-darwin11 Configured with: ../gcc-4.5.3/configure --prefix=/opt/local --build=x86_64-apple-darwin11 --enable-languages=c,c++,objc,obj-c++,fortran,java --libdir=/opt/local/lib/gcc45 --includedir=/opt/local/include/gcc45 --infodir=/opt/local/share/info --mandir=/opt/local/share/man --datarootdir=/opt/local/share/gcc-4.5 --with-local-prefix=/opt/local --with-system-zlib --disable-nls --program-suffix=-mp-4.5 --with-gxx-include-dir=/opt/local/include/gcc45/c++/ --with-gmp=/opt/local --with-mpfr=/opt/local --with-mpc=/opt/local --enable-stage1-checking --disable-multilib --enable-fully-dynamic-string Thread model: posix gcc version 4.5.3 (GCC) configure:3805: $? = 0 configure:3794: gcc -V >&5 gcc: '-V' option must have argument configure:3805: $? = 1 configure:3794: gcc -qversion >&5 gcc: unrecognized option '-qversion' gcc: no input files configure:3805: $? = 1 configure:3825: checking for C compiler default output file name configure:3847: gcc -g -fkeep-inline-functions conftest.c >&5 configure:3851: $? = 0 configure:3888: result: a.out configure:3904: checking whether the C compiler works configure:3913: ./a.out configure:3917: $? = 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: $? = 0 configure:3977: result: configure:3983: checking for suffix of object files configure:4005: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:4009: $? = 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: $? = 0 configure:4062: result: yes configure:4071: checking whether gcc accepts -g configure:4091: gcc -c -g conftest.c >&5 configure:4091: $? = 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: $? = 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: $? = 0 configure:4288: gcc -c conftest.c -o conftest2.o >&5 configure:4292: $? = 0 configure:4303: cc -c conftest.c >&5 configure:4307: $? = 0 configure:4315: cc -c conftest.c -o conftest2.o >&5 configure:4319: $? = 0 configure:4325: cc -c conftest.c -o conftest2.o >&5 configure:4329: $? = 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: $? = 0 configure:4496: g++ -v >&5 Using built-in specs. COLLECT_GCC=g++ COLLECT_LTO_WRAPPER=/opt/local/libexec/gcc/x86_64-apple-darwin11/4.5.3/lto-wrapper Target: x86_64-apple-darwin11 Configured with: ../gcc-4.5.3/configure --prefix=/opt/local --build=x86_64-apple-darwin11 --enable-languages=c,c++,objc,obj-c++,fortran,java --libdir=/opt/local/lib/gcc45 --includedir=/opt/local/include/gcc45 --infodir=/opt/local/share/info --mandir=/opt/local/share/man --datarootdir=/opt/local/share/gcc-4.5 --with-local-prefix=/opt/local --with-system-zlib --disable-nls --program-suffix=-mp-4.5 --with-gxx-include-dir=/opt/local/include/gcc45/c++/ --with-gmp=/opt/local --with-mpfr=/opt/local --with-mpc=/opt/local --enable-stage1-checking --disable-multilib --enable-fully-dynamic-string Thread model: posix gcc version 4.5.3 (GCC) configure:4507: $? = 0 configure:4496: g++ -V >&5 g++: '-V' option must have argument configure:4507: $? = 1 configure:4496: g++ -qversion >&5 g++: unrecognized option '-qversion' g++: no input files configure:4507: $? = 1 configure:4511: checking whether we are using the GNU C++ compiler configure:4530: g++ -c -g -O2 conftest.cpp >&5 configure:4530: $? = 0 configure:4539: result: yes configure:4548: checking whether g++ accepts -g configure:4568: g++ -c -g conftest.cpp >&5 configure:4568: $? = 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: $? = 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: $? = 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: $? = 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: $? = 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: $? = 0 configure:5235: gcc -o conftest -g -fkeep-inline-functions conftest.c >&5 configure:5235: $? = 0 configure:5235: ./conftest configure:5235: $? = 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: $? = 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: $? = 0 configure:5259: result: yes configure:5259: checking for stdlib.h configure:5259: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5259: $? = 0 configure:5259: result: yes configure:5259: checking for string.h configure:5259: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5259: $? = 0 configure:5259: result: yes configure:5259: checking for memory.h configure:5259: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5259: $? = 0 configure:5259: result: yes configure:5259: checking for strings.h configure:5259: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5259: $? = 0 configure:5259: result: yes configure:5259: checking for inttypes.h configure:5259: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5259: $? = 0 configure:5259: result: yes configure:5259: checking for stdint.h configure:5259: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5259: $? = 0 configure:5259: result: yes configure:5259: checking for unistd.h configure:5259: gcc -c -g -fkeep-inline-functions conftest.c >&5 configure:5259: $? = 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: $? = 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: $? = 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: $? = 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: $? = 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: $? = 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: $? = 0 configure:5494: result: inline configure:5520: checking for special C compiler options needed for large files 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: $? = 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: $? = 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 () | { | | FILE *f = fopen ("conftest.val", "w"); | if (! f) | return 1; | if (((long int) (sizeof (void *))) < 0) | { | long int i = longval (); | if (i != ((long int) (sizeof (void *)))) | return 1; | fprintf (f, "%ld", i); | } | else | { | unsigned long int i = ulongval (); | if (i != ((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) != 0; | | ; | 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: $? = 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 () | { | | FILE *f = fopen ("conftest.val", "w"); | if (! f) | return 1; | if (((long int) (sizeof (short))) < 0) | { | long int i = longval (); | if (i != ((long int) (sizeof (short)))) | return 1; | fprintf (f, "%ld", i); | } | else | { | unsigned long int i = ulongval (); | if (i != ((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) != 0; | | ; | 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: $? = 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 () | { | | FILE *f = fopen ("conftest.val", "w"); | if (! f) | return 1; | if (((long int) (sizeof (int))) < 0) | { | long int i = longval (); | if (i != ((long int) (sizeof (int)))) | return 1; | fprintf (f, "%ld", i); | } | else | { | unsigned long int i = ulongval (); | if (i != ((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) != 0; | | ; | 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: $? = 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 () | { | | FILE *f = fopen ("conftest.val", "w"); | if (! f) | return 1; | if (((long int) (sizeof (long))) < 0) | { | long int i = longval (); | if (i != ((long int) (sizeof (long)))) | return 1; | fprintf (f, "%ld", i); | } | else | { | unsigned long int i = ulongval (); | if (i != ((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) != 0; | | ; | 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: $? = 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: $? = 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: $? = 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 long)); } | #include | #include | int | main () | { | | FILE *f = fopen ("conftest.val", "w"); | if (! f) | return 1; | if (((long int) (sizeof (long long))) < 0) | { | long int i = longval (); | if (i != ((long int) (sizeof (long long)))) | return 1; | fprintf (f, "%ld", i); | } | else | { | unsigned long int i = ulongval (); | if (i != ((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) != 0; | | ; | 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=x86_64-apple-darwin11.1.0 ac_cv_c_compiler_gnu=yes ac_cv_c_inline=inline 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=gcc ac_cv_env_CFLAGS_set=set ac_cv_env_CFLAGS_value='-g -fkeep-inline-functions' ac_cv_env_CLOOGINC_set=set ac_cv_env_CLOOGINC_value= ac_cv_env_CLOOGLIBS_set=set ac_cv_env_CLOOGLIBS_value= ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CPP_set= ac_cv_env_CPP_value= ac_cv_env_CXXCPP_set= ac_cv_env_CXXCPP_value= ac_cv_env_CXXFLAGS_set=set ac_cv_env_CXXFLAGS_value='-g -O2' ac_cv_env_CXX_set=set ac_cv_env_CXX_value=g++ ac_cv_env_GMPINC_set=set ac_cv_env_GMPINC_value= ac_cv_env_GMPLIBS_set=set ac_cv_env_GMPLIBS_value='-L/usr/local/lib/ -L/usr/local/lib/ -L/usr/local/lib/ -lmpc -lmpfr -lgmp' ac_cv_env_LDFLAGS_set=set ac_cv_env_LDFLAGS_value=' ' ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_PPLINC_set=set ac_cv_env_PPLINC_value= ac_cv_env_PPLLIBS_set=set ac_cv_env_PPLLIBS_value= ac_cv_env_build_alias_set=set ac_cv_env_build_alias_value=x86_64-apple-darwin11.1.0 ac_cv_env_host_alias_set=set ac_cv_env_host_alias_value=x86_64-apple-darwin11.1.0 ac_cv_env_target_alias_set=set ac_cv_env_target_alias_value=x86_64-apple-darwin11.1.0 ac_cv_header_inttypes_h=yes ac_cv_header_memory_h=yes ac_cv_header_minix_config_h=no ac_cv_header_stdc=yes ac_cv_header_stdint_h=yes ac_cv_header_stdlib_h=yes ac_cv_header_string_h=yes ac_cv_header_strings_h=yes ac_cv_header_sys_stat_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_unistd_h=yes ac_cv_host=x86_64-apple-darwin11.1.0 ac_cv_objext=o ac_cv_path_EGREP='/usr/bin/grep -E' ac_cv_path_GREP=/usr/bin/grep ac_cv_prog_CC=gcc ac_cv_prog_CPP='gcc -E' ac_cv_prog_GNATBIND=no ac_cv_prog_GNATMAKE=no ac_cv_prog_cc_c89= ac_cv_prog_cc_g=yes ac_cv_prog_cc_gcc_c_o=yes ac_cv_prog_cxx_g=yes ac_cv_safe_to_define___extensions__=yes ac_cv_sizeof_int=0 ac_cv_sizeof_long=0 ac_cv_sizeof_short=0 ac_cv_sizeof_void_p=0 ac_cv_sys_file_offset_bits=no ac_cv_sys_largefile_CC=no ac_cv_target=x86_64-apple-darwin11.1.0 ac_cv_type_long_long=yes acx_cv_cc_gcc_supports_ada=no ## ----------------- ## ## Output variables. ## ## ----------------- ## ALL='' AR='ar' AWK='awk' BISON='bison' BUILD_CFLAGS='' BUILD_INFO='' BUILD_LDFLAGS='' CATALOGS='' CATOBJEXT='' CC='gcc' CC_FOR_BUILD='gcc' CFLAGS='-g -fkeep-inline-functions' CLOOGINC='' CLOOGLIBS='' COLLECT2_LIBS='' CONFIGURE_SPECS='' CPP='gcc -E' CPPFLAGS='' CROSS='' CROSS_SYSTEM_HEADER_DIR='' CXX='g++' CXXCPP='' CXXFLAGS='-g -O2' DATADIRNAME='' DEFS='' DSYMUTIL='' DUMPBIN='' ECHO_C='\c' ECHO_N='' ECHO_T='' EGREP='/usr/bin/grep -E' ENABLE_BUILD_WITH_CXX='' EXEEXT='' FGREP='' FLEX='flex' GENCAT='' GENERATED_MANPAGES='' GENINSRC='#' GGC='' GMPINC='' GMPLIBS='-L/usr/local/lib/ -L/usr/local/lib/ -L/usr/local/lib/ -lmpc -lmpfr -lgmp' GMSGFMT='' GNATBIND='no' GNATMAKE='no' GNAT_LIBEXC='' GREP='/usr/bin/grep' HOST_LIBS='' INCINTL='' INSTALL='/usr/bin/install -c' INSTALL_DATA='/usr/bin/install -c -m 644' INSTALL_PROGRAM='/usr/bin/install -c' INSTOBJEXT='' LD='ld' LDEXP_LIB='' LDFLAGS=' ' LIBICONV='' LIBICONV_DEP='' LIBINTL='' LIBINTL_DEP='' LIBOBJS='' LIBS='' LIBTOOL='' LIPO='' LN='' LN_S='' LTLIBICONV='' LTLIBOBJS='' MAINT='' MAKEINFO='makeinfo --split-size=5000000 --split-size=5000000' NM='nm' NMEDIT='' NO_MINUS_C_MINUS_O='' OBJDUMP='objdump' OBJEXT='o' ORIGINAL_AS_FOR_TARGET='' ORIGINAL_LD_FOR_TARGET='' ORIGINAL_NM_FOR_TARGET='' ORIGINAL_PLUGIN_LD_FOR_TARGET='' OTOOL64='' OTOOL='' OUTPUT_OPTION='-o $@' PACKAGE_BUGREPORT='' PACKAGE_NAME='' PACKAGE_STRING='' PACKAGE_TARNAME='' PACKAGE_URL='' PACKAGE_VERSION='' PATH_SEPARATOR=':' PKGVERSION='' POSUB='' PPLINC='' PPLLIBS='' RANLIB='ranlib' REPORT_BUGS_TEXI='' REPORT_BUGS_TO='' SED='/usr/bin/sed' SET_MAKE='' SHELL='/bin/sh' STMP_FIXINC='' STRIP='' SYSTEM_HEADER_DIR='' TARGET_SYSTEM_ROOT='' TARGET_SYSTEM_ROOT_DEFINE='' TM_ENDIAN_CONFIG='' TM_MULTILIB_CONFIG='' TM_MULTILIB_EXCEPTIONS_CONFIG='' TREEBROWSER='' USE_NLS='' XGETTEXT='' ac_ct_CC='' ac_ct_CXX='' ac_ct_DUMPBIN='' all_compilers='' all_gtfiles='' all_lang_makefrags='' all_languages='' all_selected_languages='' bindir='${exec_prefix}/bin' build='x86_64-apple-darwin11.1.0' build_alias='x86_64-apple-darwin11.1.0' build_cpu='x86_64' build_exeext='' build_file_translate='' build_install_headers_dir='' build_libsubdir='build-x86_64-apple-darwin11.1.0' build_os='darwin11.1.0' build_subdir='build-x86_64-apple-darwin11.1.0' build_vendor='apple' build_xm_defines='' build_xm_file_list='' build_xm_include_list='' c_loose_warn='' c_strict_warn='' c_target_objs='' check_languages='' collect2='' coverage_flags='' cpp_install_dir='' cxx_target_objs='' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE}' dollar='' dvidir='${docdir}' enable_decimal_float='' enable_fast_install='' enable_fixed_point='' enable_lto='' enable_multilib='' enable_plugin='' enable_shared='' exec_prefix='NONE' extra_gcc_objs='' extra_headers_list='' extra_modes_file='' extra_objs='' extra_opt_files='' extra_parts='' extra_passes='' extra_programs='' float_h_file='' fortran_target_objs='' gcc_config_arguments='' gcc_cv_as='' gcc_cv_ld='' gcc_cv_nm='' gcc_cv_objdump='' gcc_cv_readelf='' gcc_gxx_include_dir='$(libsubdir)/$(libsubdir_to_prefix)include/c++/$(version)' gcc_tooldir='' gthread_flags='' have_mktemp_command='' host='x86_64-apple-darwin11.1.0' host_alias='x86_64-apple-darwin11.1.0' host_cpu='x86_64' host_exeext='' host_os='darwin11.1.0' host_subdir='.' host_vendor='apple' host_xm_defines='' host_xm_file_list='' host_xm_include_list='' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' inhibit_libc='' install='' lang_opt_files='' lang_specs_files='' lang_tree_files='' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' libgcc_visibility='' local_prefix='/usr/local' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' loose_warn='' make_compare_target='' mandir='${datarootdir}/man' manext='' md_file='' nocommon_flag='' objc_boehm_gc='' objdir='' objext='' oldincludedir='/usr/include' out_file='' out_host_hook_obj='' out_object_file='' pdfdir='${docdir}' pluginlibs='' prefix='NONE' program_transform_name='s,y,y,' psdir='${docdir}' ranlib_flags='' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' slibdir='' srcdir='/Users/bhoglund/tmp/gcc-4.6.1/gcc' strict_warn='' subdirs='' sysconfdir='${prefix}/etc' target='x86_64-apple-darwin11.1.0' target_alias='x86_64-apple-darwin11.1.0' target_cpu='x86_64' target_cpu_default='' target_noncanonical='x86_64-apple-darwin11.1.0' target_os='darwin11.1.0' target_subdir='x86_64-apple-darwin11.1.0' target_vendor='apple' thread_file='' tm_defines='' tm_file_list='' tm_include_list='' tm_p_file_list='' tm_p_include_list='' tmake_file='' use_gcc_stdint='' user_headers_inc_next_post='' user_headers_inc_next_pre='' valgrind_command='' valgrind_path='' valgrind_path_defines='' warn_cflags='' warn_cxxflags='' xm_defines='' xm_file_list='' xm_include_list='' xmake_file='' zlibdir='' zlibinc='' ## ------------------- ## ## File substitutions. ## ## ------------------- ## language_hooks='' option_includes='' ## ----------- ## ## 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 --Apple-Mail=_78FBBE01-D06F-45A7-8C73-B5353D40E360 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=iso-8859-1 Content-length: 6 --Apple-Mail=_78FBBE01-D06F-45A7-8C73-B5353D40E360--