Ticket #299: config.log

File config.log, 143.6 kB (added by Lee Mun Chiew, Cornelius, 3 months ago)

Added by email2trac

Line 
1 This file contains any messages produced by compilers while
2 running configure, to aid debugging if configure makes a mistake.
3
4 It was created by configure, which was
5 generated by GNU Autoconf 2.62.  Invocation command line was
6
7   $ ./configure --prefix=/home/Cornelius/mpich2-install
8
9 ## --------- ##
10 ## Platform. ##
11 ## --------- ##
12
13 hostname = CorneliusVAIO
14 uname -m = i686
15 uname -r = 1.5.25(0.156/4/2)
16 uname -s = CYGWIN_NT-5.1
17 uname -v = 2008-06-12 19:34
18
19 /usr/bin/uname -p = unknown
20 /bin/uname -X     = unknown
21
22 /bin/arch              = i686
23 /usr/bin/arch -k       = unknown
24 /usr/convex/getsysinfo = unknown
25 /usr/bin/hostinfo      = unknown
26 /bin/machine           = unknown
27 /usr/bin/oslevel       = unknown
28 /bin/universe          = unknown
29
30 PATH: /usr/local/bin
31 PATH: /usr/bin
32 PATH: /bin
33 PATH: /usr/X11R6/bin
34 PATH: .
35 PATH: /usr/bin
36 PATH: /usr/X11R6/bin
37 PATH: /cygdrive/c/Program Files/Nokia/PC Connectivity Solution/
38 PATH: /cygdrive/c/WINDOWS/system32
39 PATH: /cygdrive/c/WINDOWS
40 PATH: /cygdrive/c/WINDOWS/system32/wbem
41 PATH: /cygdrive/c/program files/intel/wireless/bin/
42 PATH: /cygdrive/c/program files/common files/adobe/agl
43 PATH: /cygdrive/c/Program Files/MATLAB/R2006a/bin/win32
44 PATH: /cygdrive/c/Program Files/Microsoft Visual Studio/Common/Tools/WinNT
45 PATH: /cygdrive/c/Program Files/Microsoft Visual Studio/Common/MSDev98/Bin
46 PATH: /cygdrive/c/Program Files/Microsoft Visual Studio/Common/Tools
47 PATH: /cygdrive/c/Program Files/Microsoft Visual Studio/VC98/bin
48 PATH: /usr/bin
49 PATH: /usr/X11R6/bin
50 PATH: /usr/X11R6/bin
51 PATH: /usr/lib/lapack
52
53
54 ## ----------- ##
55 ## Core tests. ##
56 ## ----------- ##
57
58 configure:3842: checking for gcc
59 configure:3858: found /usr/bin/gcc
60 configure:3869: result: gcc
61 configure:4107: checking for C compiler version
62 configure:4115: gcc --version >&5
63 gcc (GCC) 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)
64 Copyright (C) 2004 Free Software Foundation, Inc.
65 This is free software; see the source for copying conditions.  There is NO
66 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
67
68 configure:4119: $? = 0
69 configure:4126: gcc -v >&5
70 Reading specs from /usr/lib/gcc/i686-pc-cygwin/3.4.4/specs
71 Configured with: /usr/build/package/orig/test.respin/gcc-3.4.4-3/configure --verbose --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --enable-languages=c,ada,c++,d,f77,pascal,java,objc --enable-nls --without-included-gettext --enable-version-specific-runtime-libs --without-x --enable-libgcj --disable-java-awt --with-system-zlib --enable-interpreter --disable-libgcj-debug --enable-threads=posix --enable-java-gc=boehm --disable-win32-registry --enable-sjlj-exceptions --enable-hash-synchronization --enable-libstdcxx-debug
72 Thread model: posix
73 gcc version 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)
74 configure:4130: $? = 0
75 configure:4137: gcc -V >&5
76 gcc: `-V' option must have argument
77 configure:4141: $? = 1
78 configure:4164: checking for C compiler default output file name
79 configure:4186: gcc    conftest.c  >&5
80 configure:4190: $? = 0
81 configure:4228: result: a.exe
82 configure:4245: checking whether the C compiler works
83 configure:4255: ./a.exe
84 configure:4259: $? = 0
85 configure:4276: result: yes
86 configure:4283: checking whether we are cross compiling
87 configure:4285: result: no
88 configure:4288: checking for suffix of executables
89 configure:4295: gcc -o conftest.exe    conftest.c  >&5
90 configure:4299: $? = 0
91 configure:4323: result: .exe
92 configure:4329: checking for suffix of object files
93 configure:4355: gcc -c   conftest.c >&5
94 configure:4359: $? = 0
95 configure:4382: result: o
96 configure:4386: checking whether we are using the GNU C compiler
97 configure:4415: gcc -c   conftest.c >&5
98 configure:4422: $? = 0
99 configure:4439: result: yes
100 configure:4448: checking whether gcc accepts -g
101 configure:4478: gcc -c -g  conftest.c >&5
102 configure:4485: $? = 0
103 configure:4586: result: yes
104 configure:4603: checking for gcc option to accept ISO C89
105 configure:4677: gcc  -c -g -O2  conftest.c >&5
106 configure:4684: $? = 0
107 configure:4707: result: none needed
108 configure:5195: checking whether C compiler accepts option -O2
109 configure:5205: result: yes
110 configure:5207: checking whether routines compiled with -O2 can be linked with ones compiled without -O2
111 configure:5215: result: yes
112 configure:5438: checking for type of weak symbol support
113 configure:5472: gcc -o conftest.exe  -O2   conftest.c  >&5
114 conftest.c:16: warning: weak declaration of 'PFoo' not supported
115 configure:5479: $? = 0
116 ${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest1.c conftest2.c $LIBS >conftest.out 2>&1
117 Failed program was
118 extern int PFoo(int);
119 #pragma weak PFoo = Foo
120 int Foo(int);
121 int Foo(int a) { return a; }
122 extern int Foo(int);
123 int PFoo(int a) { return a+1;}
124 int main(int argc, char **argv) {
125 return Foo(0);}
126 conftest1.c:1: warning: weak declaration of 'PFoo' not supported
127 /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccgigRzt.o:conftest2.c:(.text+0x0): multiple definition of `_PFoo'
128 /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccEIzsbr.o:conftest1.c:(.text+0x0): first defined here
129 collect2: ld returned 1 exit status
130 configure:5590: gcc -o conftest.exe  -O2   conftest.c  >&5
131 /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccIDuV6c.o:conftest.c:(.text+0x30): undefined reference to `_PFoo'
132 collect2: ld returned 1 exit status
133 configure:5597: $? = 1
134 configure: failed program was:
135 | /* confdefs.h.  */
136 | #define PACKAGE_NAME ""
137 | #define PACKAGE_TARNAME ""
138 | #define PACKAGE_VERSION ""
139 | #define PACKAGE_STRING ""
140 | #define PACKAGE_BUGREPORT ""
141 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
142 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
143 | #define USE_LOGGING MPID_LOGGING_NONE
144 | #define HAVE_RUNTIME_THREADCHECK 1
145 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
146 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
147 | #define HAVE_ROMIO 1
148 | /* end confdefs.h.  */
149 |
150 | extern int PFoo(int);
151 | #pragma _HP_SECONDARY_DEF Foo  PFoo
152 | int Foo(int a) { return a; }
153 |
154 | int
155 | main ()
156 | {
157 | return PFoo(1);
158 |   ;
159 |   return 0;
160 | }
161 configure:5643: gcc -o conftest.exe  -O2   conftest.c  >&5
162 /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccWqm8xn.o:conftest.c:(.text+0x30): undefined reference to `_PFoo'
163 collect2: ld returned 1 exit status
164 configure:5650: $? = 1
165 configure: failed program was:
166 | /* confdefs.h.  */
167 | #define PACKAGE_NAME ""
168 | #define PACKAGE_TARNAME ""
169 | #define PACKAGE_VERSION ""
170 | #define PACKAGE_STRING ""
171 | #define PACKAGE_BUGREPORT ""
172 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
173 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
174 | #define USE_LOGGING MPID_LOGGING_NONE
175 | #define HAVE_RUNTIME_THREADCHECK 1
176 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
177 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
178 | #define HAVE_ROMIO 1
179 | /* end confdefs.h.  */
180 |
181 | extern int PFoo(int);
182 | #pragma _CRI duplicate PFoo as Foo
183 | int Foo(int a) { return a; }
184 |
185 | int
186 | main ()
187 | {
188 | return PFoo(1);
189 |   ;
190 |   return 0;
191 | }
192 configure:5678: result: no
193 configure:5705: checking whether __attribute__ ((weak)) allowed
194 configure:5732: gcc -c  -O2  conftest.c >&5
195 conftest.c:15: warning: weak declaration of 'foo' not supported
196 configure:5739: $? = 0
197 configure:5754: result: yes
198 configure:5928: checking for g77
199 configure:5944: found /usr/bin/g77
200 configure:5955: result: g77
201 configure:5985: checking for Fortran 77 compiler version
202 configure:5993: g77 --version >&5
203 GNU Fortran (GCC) 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)
204 Copyright (C) 2004 Free Software Foundation, Inc.
205
206 GNU Fortran comes with NO WARRANTY, to the extent permitted by law.
207 You may redistribute copies of GNU Fortran
208 under the terms of the GNU General Public License.
209 For more information about these matters, see the file named COPYING
210 or type the command `info -f g77 Copying'.
211 configure:5997: $? = 0
212 configure:6004: g77 -v >&5
213 Reading specs from /usr/lib/gcc/i686-pc-cygwin/3.4.4/specs
214 Configured with: /usr/build/package/orig/test.respin/gcc-3.4.4-3/configure --verbose --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --enable-languages=c,ada,c++,d,f77,pascal,java,objc --enable-nls --without-included-gettext --enable-version-specific-runtime-libs --without-x --enable-libgcj --disable-java-awt --with-system-zlib --enable-interpreter --disable-libgcj-debug --enable-threads=posix --enable-java-gc=boehm --disable-win32-registry --enable-sjlj-exceptions --enable-hash-synchronization --enable-libstdcxx-debug
215 Thread model: posix
216 gcc version 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)
217 configure:6008: $? = 0
218 configure:6015: g77 -V >&5
219 g77: `-V' option must have argument
220 configure:6019: $? = 1
221 configure:6027: checking whether we are using the GNU Fortran 77 compiler
222 configure:6046: g77 -c  conftest.F >&5
223 configure:6053: $? = 0
224 configure:6070: result: yes
225 configure:6076: checking whether g77 accepts -g
226 configure:6093: g77 -c -g conftest.f >&5
227 configure:6100: $? = 0
228 configure:6116: result: yes
229 configure:6430: checking whether Fortran 77 compiler accepts option -O2
230 configure:6446: g77  -o conftest conftest.f  >conftest.bas 2>&1
231 configure:6449: $? = 0
232 configure:6451: g77 -O2  -o conftest conftest.f  >conftest.out 2>&1
233 configure:6454: $? = 0
234 configure:6457: result: yes
235 configure:6459: checking whether routines compiled with -O2 can be linked with ones compiled without -O2
236 configure:6465: g77 -c  conftest2.f >conftest2.out 2>&1
237 configure:6468: $? = 0
238 configure:6470: g77 -O2  -o conftest conftest2.o conftest.f  >conftest.bas 2>&1
239 configure:6473: $? = 0
240 configure:6512: result: yes
241 configure:6700: checking how to get verbose linking output from g77
242 configure:6716: g77 -c  -O2 conftest.f >&5
243 configure:6723: $? = 0
244 configure:6745: g77 -o conftest.exe -O2 -v conftest.f
245 Reading specs from /usr/lib/gcc/i686-pc-cygwin/3.4.4/specs
246 Configured with: /usr/build/package/orig/test.respin/gcc-3.4.4-3/configure --verbose --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --enable-languages=c,ada,c++,d,f77,pascal,java,objc --enable-nls --without-included-gettext --enable-version-specific-runtime-libs --without-x --enable-libgcj --disable-java-awt --with-system-zlib --enable-interpreter --disable-libgcj-debug --enable-threads=posix --enable-java-gc=boehm --disable-win32-registry --enable-sjlj-exceptions --enable-hash-synchronization --enable-libstdcxx-debug
247 Thread model: posix
248 gcc version 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)
249  /usr/lib/gcc/i686-pc-cygwin/3.4.4/f771.exe conftest.f -quiet -dumpbase conftest.f -mtune=pentiumpro -auxbase conftest -O2 -version -o /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccMXAsST.s
250 GNU F77 version 3.4.4 (cygming special, gdc 0.12, using dmd 0.125) (i686-pc-cygwin)
251         compiled by GNU C version 3.4.4 (cygming special, gdc 0.12, using dmd 0.125).
252 GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
253  /usr/lib/gcc/i686-pc-cygwin/3.4.4/../../../../i686-pc-cygwin/bin/as.exe -o /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccgnXzjG.o /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccMXAsST.s
254  /usr/lib/gcc/i686-pc-cygwin/3.4.4/collect2.exe -Bdynamic --dll-search-prefix=cyg -o conftest.exe /usr/lib/gcc/i686-pc-cygwin/3.4.4/../../../crt0.o -L/usr/lib/gcc/i686-pc-cygwin/3.4.4 -L/usr/lib/gcc/i686-pc-cygwin/3.4.4 -L/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../.. /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccgnXzjG.o -lfrtbegin -lg2c -lgcc -lcygwin -luser32 -lkernel32 -ladvapi32 -lshell32 -lgcc
255 configure:6814: result: -v
256 configure:6816: checking for Fortran 77 libraries of g77
257 configure:6839: g77 -o conftest.exe -O2 -v conftest.f
258 Reading specs from /usr/lib/gcc/i686-pc-cygwin/3.4.4/specs
259 Configured with: /usr/build/package/orig/test.respin/gcc-3.4.4-3/configure --verbose --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --enable-languages=c,ada,c++,d,f77,pascal,java,objc --enable-nls --without-included-gettext --enable-version-specific-runtime-libs --without-x --enable-libgcj --disable-java-awt --with-system-zlib --enable-interpreter --disable-libgcj-debug --enable-threads=posix --enable-java-gc=boehm --disable-win32-registry --enable-sjlj-exceptions --enable-hash-synchronization --enable-libstdcxx-debug
260 Thread model: posix
261 gcc version 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)
262  /usr/lib/gcc/i686-pc-cygwin/3.4.4/f771.exe conftest.f -quiet -dumpbase conftest.f -mtune=pentiumpro -auxbase conftest -O2 -version -o /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccdfeNOe.s
263 GNU F77 version 3.4.4 (cygming special, gdc 0.12, using dmd 0.125) (i686-pc-cygwin)
264         compiled by GNU C version 3.4.4 (cygming special, gdc 0.12, using dmd 0.125).
265 GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
266  /usr/lib/gcc/i686-pc-cygwin/3.4.4/../../../../i686-pc-cygwin/bin/as.exe -o /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccUSFsyj.o /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccdfeNOe.s
267  /usr/lib/gcc/i686-pc-cygwin/3.4.4/collect2.exe -Bdynamic --dll-search-prefix=cyg -o conftest.exe /usr/lib/gcc/i686-pc-cygwin/3.4.4/../../../crt0.o -L/usr/lib/gcc/i686-pc-cygwin/3.4.4 -L/usr/lib/gcc/i686-pc-cygwin/3.4.4 -L/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../.. /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccUSFsyj.o -lfrtbegin -lg2c -lgcc -lcygwin -luser32 -lkernel32 -ladvapi32 -lshell32 -lgcc
268 configure:7016: result:  -L/usr/lib/gcc/i686-pc-cygwin/3.4.4 -L/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../.. -lfrtbegin -lg2c -lcygwin -luser32 -lkernel32 -ladvapi32 -lshell32
269 configure:7032: checking whether g77 accepts the FLIBS found by autoconf
270 configure:7044: g77 -o conftest.exe  -O2  conftest.f  >&5
271 configure:7047: $? = 0
272 configure:7055: result: yes
273 configure:7093: checking whether C can link with  -L/usr/lib/gcc/i686-pc-cygwin/3.4.4 -L/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../.. -lfrtbegin -lg2c -lcygwin -luser32 -lkernel32 -ladvapi32 -lshell32
274 configure:7119: gcc -o conftest.exe  -O2   conftest.c   -L/usr/lib/gcc/i686-pc-cygwin/3.4.4 -L/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../.. -lfrtbegin -lg2c -lcygwin -luser32 -lkernel32 -ladvapi32 -lshell32 >&5
275 configure:7126: $? = 0
276 configure:7146: result: yes
277 configure:7250: gcc -c  -O2  conftest.c >&5
278 configure:7257: $? = 0
279 configure:7275: checking for linker for Fortran main programs
280 configure:7285: gcc -c  -O2  conftest.c >&5
281 configure:7288: $? = 0
282 configure:7307: g77 -c  -O2 conftest.f >&5
283 configure:7310: $? = 0
284 configure:7318: result: Use Fortran to link programs
285 configure:7343: checking for Fortran 77 name mangling
286 configure:7370: g77 -c  -O2 conftest.f 1>&5
287 configure:7373: $? = 0
288 configure:7411: gcc -o conftest.exe  -O2   conftest.c fconftestf.o  -L/usr/lib/gcc/i686-pc-cygwin/3.4.4 -L/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../.. -lfrtbegin -lg2c -lcygwin -luser32 -lkernel32 -ladvapi32 -lshell32  >&5
289 /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccqR3Vok.o:conftest.c:(.text+0x20): undefined reference to `_my_name'
290 collect2: ld returned 1 exit status
291 configure:7418: $? = 1
292 configure: failed program was:
293 | /* confdefs.h.  */
294 | #define PACKAGE_NAME ""
295 | #define PACKAGE_TARNAME ""
296 | #define PACKAGE_VERSION ""
297 | #define PACKAGE_STRING ""
298 | #define PACKAGE_BUGREPORT ""
299 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
300 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
301 | #define USE_LOGGING MPID_LOGGING_NONE
302 | #define HAVE_RUNTIME_THREADCHECK 1
303 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
304 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
305 | #define HAVE_ROMIO 1
306 | #define HAVE_LONG_LONG 1
307 | /* end confdefs.h.  */
308 | extern void my_name(int);
309 | int
310 | main ()
311 | {
312 | my_name(0);
313 |   ;
314 |   return 0;
315 | }
316 configure:7459: gcc -o conftest.exe  -O2   conftest.c fconftestf.o  -L/usr/lib/gcc/i686-pc-cygwin/3.4.4 -L/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../.. -lfrtbegin -lg2c -lcygwin -luser32 -lkernel32 -ladvapi32 -lshell32  >&5
317 /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccIBl32e.o:conftest.c:(.text+0x20): undefined reference to `_my_name_'
318 collect2: ld returned 1 exit status
319 configure:7466: $? = 1
320 configure: failed program was:
321 | /* confdefs.h.  */
322 | #define PACKAGE_NAME ""
323 | #define PACKAGE_TARNAME ""
324 | #define PACKAGE_VERSION ""
325 | #define PACKAGE_STRING ""
326 | #define PACKAGE_BUGREPORT ""
327 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
328 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
329 | #define USE_LOGGING MPID_LOGGING_NONE
330 | #define HAVE_RUNTIME_THREADCHECK 1
331 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
332 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
333 | #define HAVE_ROMIO 1
334 | #define HAVE_LONG_LONG 1
335 | /* end confdefs.h.  */
336 | extern void my_name_(int);
337 | int
338 | main ()
339 | {
340 | my_name_(0);
341 |   ;
342 |   return 0;
343 | }
344 configure:7508: gcc -o conftest.exe  -O2   conftest.c fconftestf.o  -L/usr/lib/gcc/i686-pc-cygwin/3.4.4 -L/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../.. -lfrtbegin -lg2c -lcygwin -luser32 -lkernel32 -ladvapi32 -lshell32  >&5
345 /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccUxWnUl.o:conftest.c:(.text+0x20): undefined reference to `_MY_NAME@4'
346 collect2: ld returned 1 exit status
347 configure:7515: $? = 1
348 configure: failed program was:
349 | /* confdefs.h.  */
350 | #define PACKAGE_NAME ""
351 | #define PACKAGE_TARNAME ""
352 | #define PACKAGE_VERSION ""
353 | #define PACKAGE_STRING ""
354 | #define PACKAGE_BUGREPORT ""
355 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
356 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
357 | #define USE_LOGGING MPID_LOGGING_NONE
358 | #define HAVE_RUNTIME_THREADCHECK 1
359 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
360 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
361 | #define HAVE_ROMIO 1
362 | #define HAVE_LONG_LONG 1
363 | /* end confdefs.h.  */
364 | void __stdcall MY_NAME(int);
365 | int
366 | main ()
367 | {
368 | MY_NAME(0);
369 |   ;
370 |   return 0;
371 | }
372 configure:7557: gcc -o conftest.exe  -O2   conftest.c fconftestf.o  -L/usr/lib/gcc/i686-pc-cygwin/3.4.4 -L/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../.. -lfrtbegin -lg2c -lcygwin -luser32 -lkernel32 -ladvapi32 -lshell32  >&5
373 /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/cc0rCqs0.o:conftest.c:(.text+0x20): undefined reference to `_MY_NAME'
374 collect2: ld returned 1 exit status
375 configure:7564: $? = 1
376 configure: failed program was:
377 | /* confdefs.h.  */
378 | #define PACKAGE_NAME ""
379 | #define PACKAGE_TARNAME ""
380 | #define PACKAGE_VERSION ""
381 | #define PACKAGE_STRING ""
382 | #define PACKAGE_BUGREPORT ""
383 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
384 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
385 | #define USE_LOGGING MPID_LOGGING_NONE
386 | #define HAVE_RUNTIME_THREADCHECK 1
387 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
388 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
389 | #define HAVE_ROMIO 1
390 | #define HAVE_LONG_LONG 1
391 | /* end confdefs.h.  */
392 | extern void MY_NAME(int);
393 | int
394 | main ()
395 | {
396 | MY_NAME(0);
397 |   ;
398 |   return 0;
399 | }
400 configure:7606: gcc -o conftest.exe  -O2   conftest.c fconftestf.o  -L/usr/lib/gcc/i686-pc-cygwin/3.4.4 -L/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../.. -lfrtbegin -lg2c -lcygwin -luser32 -lkernel32 -ladvapi32 -lshell32  >&5
401 configure:7613: $? = 0
402 configure:8151: result: lower doubleunderscore
403 configure:8244: checking what libraries are needed to link Fortran programs with C routines that use stdio
404 configure:8265: gcc -c  -O2 conftestc.c 1>&5
405 configure:8268: $? = 0
406 configure:8277: g77  -O2 -o conftest conftest.f conftestc.o 1>&5
407 configure:8280: $? = 0
408 configure:8305: result: none
409 configure:8422: checking for f90
410 configure:8452: result: no
411 configure:8422: checking for xlf90
412 configure:8452: result: no
413 configure:8422: checking for pgf90
414 configure:8452: result: no
415 configure:8422: checking for ifort
416 configure:8452: result: no
417 configure:8422: checking for epcf90
418 configure:8452: result: no
419 configure:8422: checking for f95
420 configure:8452: result: no
421 configure:8422: checking for fort
422 configure:8452: result: no
423 configure:8422: checking for xlf95
424 configure:8452: result: no
425 configure:8422: checking for lf95
426 configure:8452: result: no
427 configure:8422: checking for pathf95
428 configure:8452: result: no
429 configure:8422: checking for pathf90
430 configure:8452: result: no
431 configure:8422: checking for g95
432 configure:8452: result: no
433 configure:8422: checking for gfortran
434 configure:8452: result: no
435 configure:8422: checking for ifc
436 configure:8452: result: no
437 configure:8422: checking for efc
438 configure:8452: result: no
439 configure:8479: checking that f works as the extension for Fortran 90 program
440 configure:8485:  -c  conftest.f >&5
441 ./configure: line 8486: -c: command not found
442 configure:8488: $? = 127
443 configure:8493: result: no
444 configure:8495: checking for extension for Fortran 90 programs
445 configure:8502:  -c  conftest.f90 >&5
446 ./configure: line 8503: -c: command not found
447 configure:8505: $? = 127
448 configure:8518:  -c  conftest.f >&5
449 ./configure: line 8519: -c: command not found
450 configure:8521: $? = 127
451 configure:8526: result: unknown!
452 configure:8542: checking for Fortran 90 compiler version
453 configure:8545:  --version </dev/null >&5
454 ./configure: line 8546: --version: command not found
455 configure:8548: $? = 127
456 configure:8550:  -v </dev/null >&5
457 ./configure: line 8551: -v: command not found
458 configure:8553: $? = 127
459 configure:8555:  -V </dev/null >&5
460 ./configure: line 8556: -V: command not found
461 configure:8558: $? = 127
462 configure:9168: checking whether Fortran accepts ! for comments
463 configure:9191: g77 -c  -O2 conftest.f >&5
464 configure:9198: $? = 0
465 configure:9219: result: yes
466 configure:9229: checking for include directory flag for Fortran
467 configure:9249: g77 -c  -O2 -Isrc conftest.f 1>&5
468 configure:9252: $? = 0
469 configure:9264: result: -I
470 configure:9282: checking for Fortran 77 flag for library directories
471 configure:9300: g77 -c  -O2 conftest1.f 1>&5
472 configure:9303: $? = 0
473 configure:9311: ar cr conftest2/libconftest.a conftest1.o
474 configure:9314: $? = 0
475 configure:9317: ranlib conftest2/libconftest.a
476 configure:9320: $? = 0
477 configure:9324: g77 -o conftest  -O2 -Lconftest2 conftest.f -lconftest  1>&5
478 configure:9327: $? = 0
479 configure:9343: result: -L
480 configure:9420: checking for which Fortran libraries are needed to link C with Fortran
481 configure:9433: g77 -c  -O2 conftest.f 1>&5
482 configure:9436: $? = 0
483 configure:9477: gcc -o conftest.exe  -O2   conftest.c mconftestf.o  >&5
484 configure:9484: $? = 0
485 configure:9653: result: none
486 configure:9747: checking whether Fortran compiler processes .F files with C preprocessor
487 configure:9758: g77 -c  -O2  conftest.F 1>&5
488 configure:9761: $? = 0
489 configure:9783: result: yes
490 configure:11085: checking for c++
491 configure:11101: found /usr/bin/c++
492 configure:11112: result: c++
493 configure:11253: checking for C++ compiler version
494 configure:11261: c++ --version >&5
495 c++ (GCC) 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)
496 Copyright (C) 2004 Free Software Foundation, Inc.
497 This is free software; see the source for copying conditions.  There is NO
498 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
499
500 configure:11265: $? = 0
501 configure:11272: c++ -v >&5
502 Reading specs from /usr/lib/gcc/i686-pc-cygwin/3.4.4/specs
503 Configured with: /usr/build/package/orig/test.respin/gcc-3.4.4-3/configure --verbose --prefix=/usr --exec-prefix=/usr --sysconfdir=/etc --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --enable-languages=c,ada,c++,d,f77,pascal,java,objc --enable-nls --without-included-gettext --enable-version-specific-runtime-libs --without-x --enable-libgcj --disable-java-awt --with-system-zlib --enable-interpreter --disable-libgcj-debug --enable-threads=posix --enable-java-gc=boehm --disable-win32-registry --enable-sjlj-exceptions --enable-hash-synchronization --enable-libstdcxx-debug
504 Thread model: posix
505 gcc version 3.4.4 (cygming special, gdc 0.12, using dmd 0.125)
506 configure:11276: $? = 0
507 configure:11283: c++ -V >&5
508 c++: `-V' option must have argument
509 configure:11287: $? = 1
510 configure:11290: checking whether we are using the GNU C++ compiler
511 configure:11319: c++ -c   conftest.cpp >&5
512 configure:11326: $? = 0
513 configure:11343: result: yes
514 configure:11352: checking whether c++ accepts -g
515 configure:11382: c++ -c -g  conftest.cpp >&5
516 configure:11389: $? = 0
517 configure:11490: result: yes
518 configure:11534: checking whether the C++ compiler c++ can build an executable
519 configure:11574: c++ -o conftest.exe    conftest.cpp  >&5
520 configure:11581: $? = 0
521 configure:11607: result: yes
522 configure:11616: checking whether C++ compiler works with string
523 configure:11650: c++ -c   conftest.cpp >&5
524 configure:11657: $? = 0
525 configure:11678: result: yes
526 configure:11691: checking whether the compiler supports exceptions
527 configure:11724: c++ -c   conftest.cpp >&5
528 configure:11731: $? = 0
529 configure:11753: result: yes
530 configure:11763: checking whether the compiler recognizes bool as a built-in type
531 configure:11800: c++ -c   conftest.cpp >&5
532 configure:11807: $? = 0
533 configure:11829: result: yes
534 configure:11839: checking whether the compiler implements namespaces
535 configure:11872: c++ -c   conftest.cpp >&5
536 configure:11879: $? = 0
537 configure:11901: result: yes
538 configure:11922: checking whether <iostream> available
539 configure:11951: c++ -c   conftest.cpp >&5
540 configure:11958: $? = 0
541 configure:11973: result: yes
542 configure:11979: checking whether the compiler implements the namespace std
543 configure:12016: c++ -c   conftest.cpp >&5
544 configure:12023: $? = 0
545 configure:12046: result: yes
546 configure:12060: checking whether <math> available
547 configure:12089: c++ -c   conftest.cpp >&5
548 conftest.cpp:23:16: math: No such file or directory
549 configure:12096: $? = 1
550 configure: failed program was:
551 | /* confdefs.h.  */
552 | #define PACKAGE_NAME ""
553 | #define PACKAGE_TARNAME ""
554 | #define PACKAGE_VERSION ""
555 | #define PACKAGE_STRING ""
556 | #define PACKAGE_BUGREPORT ""
557 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
558 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
559 | #define USE_LOGGING MPID_LOGGING_NONE
560 | #define HAVE_RUNTIME_THREADCHECK 1
561 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
562 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
563 | #define HAVE_ROMIO 1
564 | #define HAVE_LONG_LONG 1
565 | #define F77_NAME_LOWER_2USCORE 1
566 | #define STDCALL
567 | #define HAVE_FORTRAN_BINDING 1
568 | #define HAVE_CXX_EXCEPTIONS /**/
569 | #define HAVE_NAMESPACES /**/
570 | #define HAVE_NAMESPACE_STD /**/
571 | /* end confdefs.h.  */
572 |
573 | #include <math>
574 |
575 | int
576 | main ()
577 | {
578 | using namespace std;
579 |   ;
580 |   return 0;
581 | }
582 configure:12111: result: no
583 configure:12170: checking for GNU g++ version
584 configure:12206: c++ -o conftest.exe    conftest.cpp  >&5
585 configure:12210: $? = 0
586 configure:12216: ./conftest.exe
587 configure:12220: $? = 0
588 configure:12237: result: 3 . 4
589 configure:12285: checking whether C++ compiler accepts option -O2
590 configure:12295: result: yes
591 configure:12297: checking whether routines compiled with -O2 can be linked with ones compiled without -O2
592 configure:12305: result: yes
593 configure:12558: checking for perl
594 configure:12576: found /usr/bin/perl
595 configure:12588: result: /usr/bin/perl
596 configure:12601: checking for ar
597 configure:12617: found /usr/bin/ar
598 configure:12628: result: ar
599 configure:12650: checking for ranlib
600 configure:12666: found /usr/bin/ranlib
601 configure:12677: result: ranlib
602 configure:12700: checking for etags
603 configure:12716: found /usr/bin/etags
604 configure:12727: result: etags
605 configure:12741: checking for etags argument to specify language
606 configure:12762: result: --language=c
607 configure:12780: checking for killall
608 configure:12796: found /usr/bin/killall
609 configure:12807: result: killall
610 configure:12854: checking for a BSD-compatible install
611 configure:12922: result: /usr/bin/install -c
612 configure:12942: checking whether install works
613 configure:12950: result: yes
614 configure:13062: checking whether install breaks libraries
615 configure:13107: result: no
616 configure:13129: checking whether mkdir -p works
617 configure:13145: result: yes
618 configure:13163: checking for make
619 configure:13179: found /usr/bin/make
620 configure:13190: result: make
621 configure:13204: checking whether clock skew breaks make
622 configure:13229: result: no
623 configure:13239: checking whether make supports include
624 configure:13263: result: yes
625 configure:13272: checking whether make allows comments in actions
626 configure:13295: result: yes
627 configure:13309: checking for virtual path format
628 configure:13352: result: VPATH
629 configure:13362: checking whether make sets CFLAGS
630 configure:13384: result: no
631 configure:13433: checking for bash
632 configure:13451: found /usr/bin/bash
633 configure:13463: result: /usr/bin/bash
634 configure:13486: checking whether /usr/bin/bash supports arrays
635 configure:13495: result: yes
636 configure:14644: checking for doctext
637 configure:14675: result: false
638 configure:14685: checking for location of doctext style files
639 configure:14702: result: unavailable
640 configure:14714: checking for an ANSI C-conforming const
641 configure:14789: gcc -c  -O2  conftest.c >&5
642 configure:14796: $? = 0
643 configure:14811: result: yes
644 configure:14822: checking for volatile
645 configure:14849: gcc -c  -O2  conftest.c >&5
646 configure:14856: $? = 0
647 configure:14871: result: yes
648 configure:14882: checking for restrict
649 configure:14909: gcc -c  -O2  conftest.c >&5
650 conftest.c: In function `main':
651 conftest.c:28: error: syntax error before "a"
652 configure:14916: $? = 1
653 configure: failed program was:
654 | /* confdefs.h.  */
655 | #define PACKAGE_NAME ""
656 | #define PACKAGE_TARNAME ""
657 | #define PACKAGE_VERSION ""
658 | #define PACKAGE_STRING ""
659 | #define PACKAGE_BUGREPORT ""
660 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
661 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
662 | #define USE_LOGGING MPID_LOGGING_NONE
663 | #define HAVE_RUNTIME_THREADCHECK 1
664 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
665 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
666 | #define HAVE_ROMIO 1
667 | #define HAVE_LONG_LONG 1
668 | #define F77_NAME_LOWER_2USCORE 1
669 | #define STDCALL
670 | #define HAVE_FORTRAN_BINDING 1
671 | #define HAVE_CXX_EXCEPTIONS /**/
672 | #define HAVE_NAMESPACES /**/
673 | #define HAVE_NAMESPACE_STD /**/
674 | #define HAVE_CXX_BINDING 1
675 | #define HAVE_NAMEPUB_SERVICE 1
676 | /* end confdefs.h.  */
677 |
678 | int
679 | main ()
680 | {
681 | int * restrict a;
682 |   ;
683 |   return 0;
684 | }
685 configure:14952: gcc -c  -O2  conftest.c >&5
686 conftest.c: In function `main':
687 conftest.c:28: error: syntax error before "a"
688 configure:14959: $? = 1
689 configure: failed program was:
690 | /* confdefs.h.  */
691 | #define PACKAGE_NAME ""
692 | #define PACKAGE_TARNAME ""
693 | #define PACKAGE_VERSION ""
694 | #define PACKAGE_STRING ""
695 | #define PACKAGE_BUGREPORT ""
696 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
697 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
698 | #define USE_LOGGING MPID_LOGGING_NONE
699 | #define HAVE_RUNTIME_THREADCHECK 1
700 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
701 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
702 | #define HAVE_ROMIO 1
703 | #define HAVE_LONG_LONG 1
704 | #define F77_NAME_LOWER_2USCORE 1
705 | #define STDCALL
706 | #define HAVE_FORTRAN_BINDING 1
707 | #define HAVE_CXX_EXCEPTIONS /**/
708 | #define HAVE_NAMESPACES /**/
709 | #define HAVE_NAMESPACE_STD /**/
710 | #define HAVE_CXX_BINDING 1
711 | #define HAVE_NAMEPUB_SERVICE 1
712 | /* end confdefs.h.  */
713 |
714 | int
715 | main ()
716 | {
717 | int * _Restrict a;
718 |   ;
719 |   return 0;
720 | }
721 configure:14996: gcc -c  -O2  conftest.c >&5
722 configure:15003: $? = 0
723 configure:15020: result: __restrict
724 configure:15035: checking for inline
725 configure:15061: gcc -c  -O2  conftest.c >&5
726 configure:15068: $? = 0
727 configure:15086: result: inline
728 configure:15109: checking whether __attribute__ allowed
729 configure:15136: gcc -c  -O2  conftest.c >&5
730 configure:15143: $? = 0
731 configure:15158: result: yes
732 configure:15160: checking whether __attribute__((format)) allowed
733 configure:15187: gcc -c  -O2  conftest.c >&5
734 configure:15194: $? = 0
735 configure:15209: result: yes
736 configure:15234: checking for grep that handles long lines and -e
737 configure:15294: result: /usr/bin/grep
738 configure:15299: checking for egrep
739 configure:15363: result: /usr/bin/grep -E
740 configure:15368: checking for ANSI C header files
741 configure:15398: gcc -c  -O2  conftest.c >&5
742 configure:15405: $? = 0
743 [?1034h]0;~
744 Cornelius@CorneliusVAIO ~
745 $ logout
746 [?1034h]0;~
747 Cornelius@CorneliusVAIO ~
748 $ logout
749 configure:15536: result: no
750 configure:15560: checking for sys/types.h
751 configure:15581:   conftest.c
752 [?1034h]0;~
753 Cornelius@CorneliusVAIO ~
754 $ logout
755 [?1034h]0;~
756 Cornelius@CorneliusVAIO ~
757 $ logout
758 configure:15588: $? = 0
759 configure:15635: result: yes
760 configure:15560: checking for sys/stat.h
761 configure:15581:   conftest.c
762 [?1034h]0;~
763 Cornelius@CorneliusVAIO ~
764 $ logout
765 [?1034h]0;~
766 Cornelius@CorneliusVAIO ~
767 $ logout
768 configure:15588: $? = 0
769 configure:15635: result: yes
770 configure:15560: checking for stdlib.h
771 configure:15581:   conftest.c
772 [?1034h]0;~
773 Cornelius@CorneliusVAIO ~
774 $ logout
775 [?1034h]0;~
776 Cornelius@CorneliusVAIO ~
777 $ logout
778 configure:15588: $? = 0
779 configure:15635: result: yes
780 configure:15560: checking for string.h
781 configure:15581:   conftest.c
782 [?1034h]0;~
783 Cornelius@CorneliusVAIO ~
784 $ logout
785 [?1034h]0;~
786 Cornelius@CorneliusVAIO ~
787 $ logout
788 configure:15588: $? = 0
789 configure:15635: result: yes
790 configure:15560: checking for memory.h
791 configure:15581:   conftest.c
792 [?1034h]0;~
793 Cornelius@CorneliusVAIO ~
794 $ logout
795 [?1034h]0;~
796 Cornelius@CorneliusVAIO ~
797 $ logout
798 configure:15588: $? = 0
799 configure:15635: result: yes
800 configure:15560: checking for strings.h
801 configure:15581:   conftest.c
802 [?1034h]0;~
803 Cornelius@CorneliusVAIO ~
804 $ logout
805 [?1034h]0;~
806 Cornelius@CorneliusVAIO ~
807 $ logout
808 configure:15588: $? = 0
809 configure:15635: result: yes
810 configure:15560: checking for inttypes.h
811 configure:15581:   conftest.c
812 [?1034h]0;~
813 Cornelius@CorneliusVAIO ~
814 $ logout
815 [?1034h]0;~
816 Cornelius@CorneliusVAIO ~
817 $ logout
818 configure:15588: $? = 0
819 configure:15635: result: yes
820 configure:15560: checking for stdint.h
821 configure:15581:   conftest.c
822 [?1034h]0;~
823 Cornelius@CorneliusVAIO ~
824 $ logout
825 [?1034h]0;~
826 Cornelius@CorneliusVAIO ~
827 $ logout
828 configure:15588: $? = 0
829 configure:15635: result: yes
830 configure:15560: checking for unistd.h
831 configure:15581:   conftest.c
832 [?1034h]0;~
833 Cornelius@CorneliusVAIO ~
834 $ logout
835 [?1034h]0;~
836 Cornelius@CorneliusVAIO ~
837 $ logout
838 configure:15588: $? = 0
839 configure:15635: result: yes
840 configure:15649: checking whether byte ordering is bigendian
841 configure:15674: gcc -c  -O2  conftest.c >&5
842 conftest.c:36: error: parse error before "is"
843 conftest.c:36: warning: data definition has no type or storage class
844 configure:15681: $? = 1
845 configure: failed program was:
846 | /* confdefs.h.  */
847 | #define PACKAGE_NAME ""
848 | #define PACKAGE_TARNAME ""
849 | #define PACKAGE_VERSION ""
850 | #define PACKAGE_STRING ""
851 | #define PACKAGE_BUGREPORT ""
852 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
853 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
854 | #define USE_LOGGING MPID_LOGGING_NONE
855 | #define HAVE_RUNTIME_THREADCHECK 1
856 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
857 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
858 | #define HAVE_ROMIO 1
859 | #define HAVE_LONG_LONG 1
860 | #define F77_NAME_LOWER_2USCORE 1
861 | #define STDCALL
862 | #define HAVE_FORTRAN_BINDING 1
863 | #define HAVE_CXX_EXCEPTIONS /**/
864 | #define HAVE_NAMESPACES /**/
865 | #define HAVE_NAMESPACE_STD /**/
866 | #define HAVE_CXX_BINDING 1
867 | #define HAVE_NAMEPUB_SERVICE 1
868 | #define restrict __restrict
869 | #define HAVE_GCC_ATTRIBUTE 1
870 | #define HAVE_SYS_TYPES_H 1
871 | #define HAVE_SYS_STAT_H 1
872 | #define HAVE_STDLIB_H 1
873 | #define HAVE_STRING_H 1
874 | #define HAVE_MEMORY_H 1
875 | #define HAVE_STRINGS_H 1
876 | #define HAVE_INTTYPES_H 1
877 | #define HAVE_STDINT_H 1
878 | #define HAVE_UNISTD_H 1
879 | /* end confdefs.h.  */
880 | #if ! (defined __BIG_ENDIAN__ || defined __LITTLE_ENDIAN__)
881 |              neither is defined;
882 |            #endif
883 |            typedef int dummy;
884 |
885 configure:15725: gcc -c  -O2  conftest.c >&5
886 configure:15732: $? = 0
887 configure:15764: gcc -c  -O2  conftest.c >&5
888 conftest.c: In function `main':
889 conftest.c:42: error: `not' undeclared (first use in this function)
890 conftest.c:42: error: (Each undeclared identifier is reported only once
891 conftest.c:42: error: for each function it appears in.)
892 conftest.c:42: error: parse error before "big"
893 configure:15771: $? = 1
894 configure: failed program was:
895 | /* confdefs.h.  */
896 | #define PACKAGE_NAME ""
897 | #define PACKAGE_TARNAME ""
898 | #define PACKAGE_VERSION ""
899 | #define PACKAGE_STRING ""
900 | #define PACKAGE_BUGREPORT ""
901 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
902 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
903 | #define USE_LOGGING MPID_LOGGING_NONE
904 | #define HAVE_RUNTIME_THREADCHECK 1
905 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
906 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
907 | #define HAVE_ROMIO 1
908 | #define HAVE_LONG_LONG 1
909 | #define F77_NAME_LOWER_2USCORE 1
910 | #define STDCALL
911 | #define HAVE_FORTRAN_BINDING 1
912 | #define HAVE_CXX_EXCEPTIONS /**/
913 | #define HAVE_NAMESPACES /**/
914 | #define HAVE_NAMESPACE_STD /**/
915 | #define HAVE_CXX_BINDING 1
916 | #define HAVE_NAMEPUB_SERVICE 1
917 | #define restrict __restrict
918 | #define HAVE_GCC_ATTRIBUTE 1
919 | #define HAVE_SYS_TYPES_H 1
920 | #define HAVE_SYS_STAT_H 1
921 | #define HAVE_STDLIB_H 1
922 | #define HAVE_STRING_H 1
923 | #define HAVE_MEMORY_H 1
924 | #define HAVE_STRINGS_H 1
925 | #define HAVE_INTTYPES_H 1
926 | #define HAVE_STDINT_H 1
927 | #define HAVE_UNISTD_H 1
928 | /* end confdefs.h.  */
929 | #include <sys/types.h>
930 |               #include <sys/param.h>
931 |
932 | int
933 | main ()
934 | {
935 | #if BYTE_ORDER != BIG_ENDIAN
936 |                not big endian
937 |               #endif
938 |
939 |   ;
940 |   return 0;
941 | }
942 configure:16023: result: no
943 configure:16069: checking whether C compiler allows unaligned doubles
944 configure:16112: gcc -o conftest.exe  -O2   conftest.c  >&5
945 configure:16116: $? = 0
946 configure:16122: ./conftest.exe
947 configure:16126: $? = 0
948 configure:16143: result: yes
949 configure:16162: checking whether gcc supports __func__
950 configure:16188: gcc -c  -O2  conftest.c >&5
951 configure:16195: $? = 0
952 configure:16210: result: yes
953 configure:16354: result: Using gcc to determine dependencies
954 configure:16386: checking whether long double is supported
955 configure:16413: gcc -c  -O2  conftest.c >&5
956 configure:16420: $? = 0
957 configure:16435: result: yes
958 configure:16446: checking whether long long is supported
959 configure:16473: gcc -c  -O2  conftest.c >&5
960 configure:16480: $? = 0
961 configure:16495: result: yes
962 configure:16508: checking for max C struct integer alignment
963 configure:16636: gcc -o conftest.exe  -O2   conftest.c  >&5
964 configure:16640: $? = 0
965 configure:16646: ./conftest.exe
966 configure:16650: $? = 0
967 configure:16669: result: eight
968 configure:16706: checking for max C struct floating point alignment
969 configure:16818: gcc -o conftest.exe  -O2   conftest.c  >&5
970 configure:16822: $? = 0
971 configure:16828: ./conftest.exe
972 configure:16832: $? = 0
973 configure:16851: result: four
974 configure:16886: checking for max C struct alignment of structs with doubles
975 configure:16967: gcc -o conftest.exe  -O2   conftest.c  >&5
976 configure:16971: $? = 0
977 configure:16977: ./conftest.exe
978 configure:16981: $? = 0
979 configure:17000: result: eight
980 configure:17007: checking for max C struct floating point alignment with long doubles
981 configure:17089: gcc -o conftest.exe  -O2   conftest.c  >&5
982 configure:17093: $? = 0
983 configure:17099: ./conftest.exe
984 configure:17103: $? = 0
985 configure:17122: result: four
986 configure:17132: WARNING: Structures containing long doubles may be aligned differently from structures with floats or longs.  MPICH2 does not handle this case automatically and you should avoid assumed extents for structures containing float types.
987 configure:17167: checking if alignment of structs with doubles is based on position
988 configure:17211: gcc -o conftest.exe  -O2   conftest.c  >&5
989 configure:17215: $? = 0
990 configure:17221: ./conftest.exe
991 configure:17225: $? = 0
992 configure:17244: result: no
993 configure:17260: checking if alignment of structs with long long ints is based on position
994 configure:17306: gcc -o conftest.exe  -O2   conftest.c  >&5
995 configure:17310: $? = 0
996 configure:17316: ./conftest.exe
997 configure:17320: $? = 0
998 configure:17339: result: no
999 configure:17355: checking if double alignment breaks rules, find actual alignment
1000 configure:17412: gcc -o conftest.exe  -O2   conftest.c  >&5
1001 configure:17416: $? = 0
1002 configure:17422: ./conftest.exe
1003 configure:17426: $? = 0
1004 configure:17445: result: no
1005 configure:17461: checking for alignment restrictions on pointers
1006 configure:17491: gcc -o conftest.exe  -O2   conftest.c  >&5
1007 configure:17495: $? = 0
1008 configure:17501: ./conftest.exe
1009 configure:17505: $? = 0
1010 configure:17531: result: int or better
1011 configure:17543: checking size of char
1012 configure:17846: gcc -o conftest.exe  -O2   conftest.c  >&5
1013 configure:17850: $? = 0
1014 configure:17856: ./conftest.exe
1015 configure:17860: $? = 0
1016 configure:17884: result: 1
1017 configure:17898: checking size of unsigned char
1018 configure:18201: gcc -o conftest.exe  -O2   conftest.c  >&5
1019 configure:18205: $? = 0
1020 configure:18211: ./conftest.exe
1021 configure:18215: $? = 0
1022 configure:18239: result: 1
1023 configure:18253: checking size of short
1024 configure:18556: gcc -o conftest.exe  -O2   conftest.c  >&5
1025 configure:18560: $? = 0
1026 configure:18566: ./conftest.exe
1027 configure:18570: $? = 0
1028 configure:18594: result: 2
1029 configure:18608: checking size of unsigned short
1030 configure:18911: gcc -o conftest.exe  -O2   conftest.c  >&5
1031 configure:18915: $? = 0
1032 configure:18921: ./conftest.exe
1033 configure:18925: $? = 0
1034 configure:18949: result: 2
1035 configure:18963: checking size of int
1036 configure:19266: gcc -o conftest.exe  -O2   conftest.c  >&5
1037 configure:19270: $? = 0
1038 configure:19276: ./conftest.exe
1039 configure:19280: $? = 0
1040 configure:19304: result: 4
1041 configure:19318: checking size of unsigned int
1042 configure:19621: gcc -o conftest.exe  -O2   conftest.c  >&5
1043 configure:19625: $? = 0
1044 configure:19631: ./conftest.exe
1045 configure:19635: $? = 0
1046 configure:19659: result: 4
1047 configure:19673: checking size of long
1048 configure:19976: gcc -o conftest.exe  -O2   conftest.c  >&5
1049 configure:19980: $? = 0
1050 configure:19986: ./conftest.exe
1051 configure:19990: $? = 0
1052 configure:20014: result: 4
1053 configure:20028: checking size of unsigned long
1054 configure:20331: gcc -o conftest.exe  -O2   conftest.c  >&5
1055 configure:20335: $? = 0
1056 configure:20341: ./conftest.exe
1057 configure:20345: $? = 0
1058 configure:20369: result: 4
1059 configure:20383: checking size of long long
1060 configure:20686: gcc -o conftest.exe  -O2   conftest.c  >&5
1061 configure:20690: $? = 0
1062 configure:20696: ./conftest.exe
1063 configure:20700: $? = 0
1064 configure:20724: result: 8
1065 configure:20738: checking size of unsigned long long
1066 configure:21041: gcc -o conftest.exe  -O2   conftest.c  >&5
1067 configure:21045: $? = 0
1068 configure:21051: ./conftest.exe
1069 configure:21055: $? = 0
1070 configure:21079: result: 8
1071 configure:21093: checking size of float
1072 configure:21396: gcc -o conftest.exe  -O2   conftest.c  >&5
1073 configure:21400: $? = 0
1074 configure:21406: ./conftest.exe
1075 configure:21410: $? = 0
1076 configure:21434: result: 4
1077 configure:21448: checking size of double
1078 configure:21751: gcc -o conftest.exe  -O2   conftest.c  >&5
1079 configure:21755: $? = 0
1080 configure:21761: ./conftest.exe
1081 configure:21765: $? = 0
1082 configure:21789: result: 8
1083 configure:21803: checking size of long double
1084 configure:22106: gcc -o conftest.exe  -O2   conftest.c  >&5
1085 configure:22110: $? = 0
1086 configure:22116: ./conftest.exe
1087 configure:22120: $? = 0
1088 configure:22144: result: 12
1089 configure:22158: checking size of wchar_t
1090 configure:22461: gcc -o conftest.exe  -O2   conftest.c  >&5
1091 configure:22465: $? = 0
1092 configure:22471: ./conftest.exe
1093 configure:22475: $? = 0
1094 configure:22499: result: 2
1095 configure:22675: checking size of void *
1096 configure:22978: gcc -o conftest.exe  -O2   conftest.c  >&5
1097 configure:22982: $? = 0
1098 configure:22988: ./conftest.exe
1099 configure:22992: $? = 0
1100 configure:23016: result: 4
1101 configure:23028: checking for size of float int
1102 configure:23059: gcc -o conftest.exe  -O2   conftest.c  >&5
1103 configure:23063: $? = 0
1104 configure:23069: ./conftest.exe
1105 configure:23073: $? = 0
1106 configure:23098: result: 8
1107 configure:23104: checking for size of double int
1108 configure:23135: gcc -o conftest.exe  -O2   conftest.c  >&5
1109 configure:23139: $? = 0
1110 configure:23145: ./conftest.exe
1111 configure:23149: $? = 0
1112 configure:23174: result: 12
1113 configure:23180: checking for size of long int
1114 configure:23211: gcc -o conftest.exe  -O2   conftest.c  >&5
1115 configure:23215: $? = 0
1116 configure:23221: ./conftest.exe
1117 configure:23225: $? = 0
1118 configure:23250: result: 8
1119 configure:23256: checking for size of short int
1120 configure:23287: gcc -o conftest.exe  -O2   conftest.c  >&5
1121 configure:23291: $? = 0
1122 configure:23297: ./conftest.exe
1123 configure:23301: $? = 0
1124 configure:23326: result: 6
1125 configure:23332: checking for size of 2 int
1126 configure:23363: gcc -o conftest.exe  -O2   conftest.c  >&5
1127 configure:23367: $? = 0
1128 configure:23373: ./conftest.exe
1129 configure:23377: $? = 0
1130 configure:23402: result: 8
1131 configure:23408: checking for size of long double int
1132 configure:23439: gcc -o conftest.exe  -O2   conftest.c  >&5
1133 configure:23443: $? = 0
1134 configure:23449: ./conftest.exe
1135 configure:23453: $? = 0
1136 configure:23478: result: 16
1137 configure:23494: checking for sys/bitypes.h
1138 configure:23515:   conftest.c
1139 [?1034h]0;~
1140 Cornelius@CorneliusVAIO ~
1141 $ logout
1142 [?1034h]0;~
1143 Cornelius@CorneliusVAIO ~
1144 $ logout
1145 configure:23522: $? = 0
1146 configure:23569: result: yes
1147 configure:23494: checking for inttypes.h
1148 configure:23569: result: yes
1149 configure:23584: checking for int8_t
1150 configure:23615: gcc -c  -O2  conftest.c >&5
1151 configure:23622: $? = 0
1152 configure:23651: gcc -c  -O2  conftest.c >&5
1153 conftest.c: In function `main':
1154 conftest.c:97: error: size of array `test_array' is negative
1155 configure:23658: $? = 1
1156 configure: failed program was:
1157 | /* confdefs.h.  */
1158 | #define PACKAGE_NAME ""
1159 | #define PACKAGE_TARNAME ""
1160 | #define PACKAGE_VERSION ""
1161 | #define PACKAGE_STRING ""
1162 | #define PACKAGE_BUGREPORT ""
1163 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
1164 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
1165 | #define USE_LOGGING MPID_LOGGING_NONE
1166 | #define HAVE_RUNTIME_THREADCHECK 1
1167 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
1168 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
1169 | #define HAVE_ROMIO 1
1170 | #define HAVE_LONG_LONG 1
1171 | #define F77_NAME_LOWER_2USCORE 1
1172 | #define STDCALL
1173 | #define HAVE_FORTRAN_BINDING 1
1174 | #define HAVE_CXX_EXCEPTIONS /**/
1175 | #define HAVE_NAMESPACES /**/
1176 | #define HAVE_NAMESPACE_STD /**/
1177 | #define HAVE_CXX_BINDING 1
1178 | #define HAVE_NAMEPUB_SERVICE 1
1179 | #define restrict __restrict
1180 | #define HAVE_GCC_ATTRIBUTE 1
1181 | #define HAVE_SYS_TYPES_H 1
1182 | #define HAVE_SYS_STAT_H 1
1183 | #define HAVE_STDLIB_H 1
1184 | #define HAVE_STRING_H 1
1185 | #define HAVE_MEMORY_H 1
1186 | #define HAVE_STRINGS_H 1
1187 | #define HAVE_INTTYPES_H 1
1188 | #define HAVE_STDINT_H 1
1189 | #define HAVE_UNISTD_H 1
1190 | #define WORDS_LITTLEENDIAN 1
1191 | #define HAVE_LONG_DOUBLE 1
1192 | #define HAVE_LONG_LONG_INT 1
1193 | #define HAVE_MAX_INTEGER_ALIGNMENT 8
1194 | #define HAVE_MAX_STRUCT_ALIGNMENT 8
1195 | #define HAVE_MAX_FP_ALIGNMENT 4
1196 | #define HAVE_MAX_DOUBLE_FP_ALIGNMENT 8
1197 | #define HAVE_MAX_LONG_DOUBLE_FP_ALIGNMENT 4
1198 | #define SIZEOF_CHAR 1
1199 | #define SIZEOF_UNSIGNED_CHAR 1
1200 | #define SIZEOF_SHORT 2
1201 | #define SIZEOF_UNSIGNED_SHORT 2
1202 | #define SIZEOF_INT 4
1203 | #define SIZEOF_UNSIGNED_INT 4
1204 | #define SIZEOF_LONG 4
1205 | #define SIZEOF_UNSIGNED_LONG 4
1206 | #define SIZEOF_LONG_LONG 8
1207 | #define SIZEOF_UNSIGNED_LONG_LONG 8
1208 | #define SIZEOF_FLOAT 4
1209 | #define SIZEOF_DOUBLE 8
1210 | #define SIZEOF_LONG_DOUBLE 12
1211 | #define SIZEOF_WCHAR_T 2
1212 | #define SIZEOF_VOID_P 4
1213 | #define HAVE_SYS_BITYPES_H 1
1214 | #define HAVE_INTTYPES_H 1
1215 | /* end confdefs.h.  */
1216 | #include <stdio.h>
1217 | #ifdef HAVE_SYS_TYPES_H
1218 | # include <sys/types.h>
1219 | #endif
1220 | #ifdef HAVE_SYS_STAT_H
1221 | # include <sys/stat.h>
1222 | #endif
1223 | #ifdef STDC_HEADERS
1224 | # include <stdlib.h>
1225 | # include <stddef.h>
1226 | #else
1227 | # ifdef HAVE_STDLIB_H
1228 | #  include <stdlib.h>
1229 | # endif
1230 | #endif
1231 | #ifdef HAVE_STRING_H
1232 | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
1233 | #  include <memory.h>
1234 | # endif
1235 | # include <string.h>
1236 | #endif
1237 | #ifdef HAVE_STRINGS_H
1238 | # include <strings.h>
1239 | #endif
1240 | #ifdef HAVE_INTTYPES_H
1241 | # include <inttypes.h>
1242 | #endif
1243 | #ifdef HAVE_STDINT_H
1244 | # include <stdint.h>
1245 | #endif
1246 | #ifdef HAVE_UNISTD_H
1247 | # include <unistd.h>
1248 | #endif
1249 | int
1250 | main ()
1251 | {
1252 | static int test_array [1 - 2 * !((int8_t) ((((int8_t) 1 << (8 - 2)) - 1) * 2 + 1)
1253 |                < (int8_t) ((((int8_t) 1 << (8 - 2)) - 1) * 2 + 2))];
1254 | test_array [0] = 0
1255 |
1256 |   ;
1257 |   return 0;
1258 | }
1259 configure:23687: result: yes
1260 configure:23700: checking for int16_t
1261 configure:23731: gcc -c  -O2  conftest.c >&5
1262 configure:23738: $? = 0
1263 configure:23767: gcc -c  -O2  conftest.c >&5
1264 conftest.c: In function `main':
1265 conftest.c:97: error: size of array `test_array' is negative
1266 configure:23774: $? = 1
1267 configure: failed program was:
1268 | /* confdefs.h.  */
1269 | #define PACKAGE_NAME ""
1270 | #define PACKAGE_TARNAME ""
1271 | #define PACKAGE_VERSION ""
1272 | #define PACKAGE_STRING ""
1273 | #define PACKAGE_BUGREPORT ""
1274 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
1275 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
1276 | #define USE_LOGGING MPID_LOGGING_NONE
1277 | #define HAVE_RUNTIME_THREADCHECK 1
1278 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
1279 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
1280 | #define HAVE_ROMIO 1
1281 | #define HAVE_LONG_LONG 1
1282 | #define F77_NAME_LOWER_2USCORE 1
1283 | #define STDCALL
1284 | #define HAVE_FORTRAN_BINDING 1
1285 | #define HAVE_CXX_EXCEPTIONS /**/
1286 | #define HAVE_NAMESPACES /**/
1287 | #define HAVE_NAMESPACE_STD /**/
1288 | #define HAVE_CXX_BINDING 1
1289 | #define HAVE_NAMEPUB_SERVICE 1
1290 | #define restrict __restrict
1291 | #define HAVE_GCC_ATTRIBUTE 1
1292 | #define HAVE_SYS_TYPES_H 1
1293 | #define HAVE_SYS_STAT_H 1
1294 | #define HAVE_STDLIB_H 1
1295 | #define HAVE_STRING_H 1
1296 | #define HAVE_MEMORY_H 1
1297 | #define HAVE_STRINGS_H 1
1298 | #define HAVE_INTTYPES_H 1
1299 | #define HAVE_STDINT_H 1
1300 | #define HAVE_UNISTD_H 1
1301 | #define WORDS_LITTLEENDIAN 1
1302 | #define HAVE_LONG_DOUBLE 1
1303 | #define HAVE_LONG_LONG_INT 1
1304 | #define HAVE_MAX_INTEGER_ALIGNMENT 8
1305 | #define HAVE_MAX_STRUCT_ALIGNMENT 8
1306 | #define HAVE_MAX_FP_ALIGNMENT 4
1307 | #define HAVE_MAX_DOUBLE_FP_ALIGNMENT 8
1308 | #define HAVE_MAX_LONG_DOUBLE_FP_ALIGNMENT 4
1309 | #define SIZEOF_CHAR 1
1310 | #define SIZEOF_UNSIGNED_CHAR 1
1311 | #define SIZEOF_SHORT 2
1312 | #define SIZEOF_UNSIGNED_SHORT 2
1313 | #define SIZEOF_INT 4
1314 | #define SIZEOF_UNSIGNED_INT 4
1315 | #define SIZEOF_LONG 4
1316 | #define SIZEOF_UNSIGNED_LONG 4
1317 | #define SIZEOF_LONG_LONG 8
1318 | #define SIZEOF_UNSIGNED_LONG_LONG 8
1319 | #define SIZEOF_FLOAT 4
1320 | #define SIZEOF_DOUBLE 8
1321 | #define SIZEOF_LONG_DOUBLE 12
1322 | #define SIZEOF_WCHAR_T 2
1323 | #define SIZEOF_VOID_P 4
1324 | #define HAVE_SYS_BITYPES_H 1
1325 | #define HAVE_INTTYPES_H 1
1326 | /* end confdefs.h.  */
1327 | #include <stdio.h>
1328 | #ifdef HAVE_SYS_TYPES_H
1329 | # include <sys/types.h>
1330 | #endif
1331 | #ifdef HAVE_SYS_STAT_H
1332 | # include <sys/stat.h>
1333 | #endif
1334 | #ifdef STDC_HEADERS
1335 | # include <stdlib.h>
1336 | # include <stddef.h>
1337 | #else
1338 | # ifdef HAVE_STDLIB_H
1339 | #  include <stdlib.h>
1340 | # endif
1341 | #endif
1342 | #ifdef HAVE_STRING_H
1343 | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
1344 | #  include <memory.h>
1345 | # endif
1346 | # include <string.h>
1347 | #endif
1348 | #ifdef HAVE_STRINGS_H
1349 | # include <strings.h>
1350 | #endif
1351 | #ifdef HAVE_INTTYPES_H
1352 | # include <inttypes.h>
1353 | #endif
1354 | #ifdef HAVE_STDINT_H
1355 | # include <stdint.h>
1356 | #endif
1357 | #ifdef HAVE_UNISTD_H
1358 | # include <unistd.h>
1359 | #endif
1360 | int
1361 | main ()
1362 | {
1363 | static int test_array [1 - 2 * !((int16_t) ((((int16_t) 1 << (16 - 2)) - 1) * 2 + 1)
1364 |                < (int16_t) ((((int16_t) 1 << (16 - 2)) - 1) * 2 + 2))];
1365 | test_array [0] = 0
1366 |
1367 |   ;
1368 |   return 0;
1369 | }
1370 configure:23803: result: yes
1371 configure:23816: checking for int32_t
1372 configure:23847: gcc -c  -O2  conftest.c >&5
1373 configure:23854: $? = 0
1374 configure:23883: gcc -c  -O2  conftest.c >&5
1375 conftest.c: In function `main':
1376 conftest.c:97: warning: integer overflow in expression
1377 conftest.c:97: error: size of array `test_array' is negative
1378 configure:23890: $? = 1
1379 configure: failed program was:
1380 | /* confdefs.h.  */
1381 | #define PACKAGE_NAME ""
1382 | #define PACKAGE_TARNAME ""
1383 | #define PACKAGE_VERSION ""
1384 | #define PACKAGE_STRING ""
1385 | #define PACKAGE_BUGREPORT ""
1386 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
1387 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
1388 | #define USE_LOGGING MPID_LOGGING_NONE
1389 | #define HAVE_RUNTIME_THREADCHECK 1
1390 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
1391 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
1392 | #define HAVE_ROMIO 1
1393 | #define HAVE_LONG_LONG 1
1394 | #define F77_NAME_LOWER_2USCORE 1
1395 | #define STDCALL
1396 | #define HAVE_FORTRAN_BINDING 1
1397 | #define HAVE_CXX_EXCEPTIONS /**/
1398 | #define HAVE_NAMESPACES /**/
1399 | #define HAVE_NAMESPACE_STD /**/
1400 | #define HAVE_CXX_BINDING 1
1401 | #define HAVE_NAMEPUB_SERVICE 1
1402 | #define restrict __restrict
1403 | #define HAVE_GCC_ATTRIBUTE 1
1404 | #define HAVE_SYS_TYPES_H 1
1405 | #define HAVE_SYS_STAT_H 1
1406 | #define HAVE_STDLIB_H 1
1407 | #define HAVE_STRING_H 1
1408 | #define HAVE_MEMORY_H 1
1409 | #define HAVE_STRINGS_H 1
1410 | #define HAVE_INTTYPES_H 1
1411 | #define HAVE_STDINT_H 1
1412 | #define HAVE_UNISTD_H 1
1413 | #define WORDS_LITTLEENDIAN 1
1414 | #define HAVE_LONG_DOUBLE 1
1415 | #define HAVE_LONG_LONG_INT 1
1416 | #define HAVE_MAX_INTEGER_ALIGNMENT 8
1417 | #define HAVE_MAX_STRUCT_ALIGNMENT 8
1418 | #define HAVE_MAX_FP_ALIGNMENT 4
1419 | #define HAVE_MAX_DOUBLE_FP_ALIGNMENT 8
1420 | #define HAVE_MAX_LONG_DOUBLE_FP_ALIGNMENT 4
1421 | #define SIZEOF_CHAR 1
1422 | #define SIZEOF_UNSIGNED_CHAR 1
1423 | #define SIZEOF_SHORT 2
1424 | #define SIZEOF_UNSIGNED_SHORT 2
1425 | #define SIZEOF_INT 4
1426 | #define SIZEOF_UNSIGNED_INT 4
1427 | #define SIZEOF_LONG 4
1428 | #define SIZEOF_UNSIGNED_LONG 4
1429 | #define SIZEOF_LONG_LONG 8
1430 | #define SIZEOF_UNSIGNED_LONG_LONG 8
1431 | #define SIZEOF_FLOAT 4
1432 | #define SIZEOF_DOUBLE 8
1433 | #define SIZEOF_LONG_DOUBLE 12
1434 | #define SIZEOF_WCHAR_T 2
1435 | #define SIZEOF_VOID_P 4
1436 | #define HAVE_SYS_BITYPES_H 1
1437 | #define HAVE_INTTYPES_H 1
1438 | /* end confdefs.h.  */
1439 | #include <stdio.h>
1440 | #ifdef HAVE_SYS_TYPES_H
1441 | # include <sys/types.h>
1442 | #endif
1443 | #ifdef HAVE_SYS_STAT_H
1444 | # include <sys/stat.h>
1445 | #endif
1446 | #ifdef STDC_HEADERS
1447 | # include <stdlib.h>
1448 | # include <stddef.h>
1449 | #else
1450 | # ifdef HAVE_STDLIB_H
1451 | #  include <stdlib.h>
1452 | # endif
1453 | #endif
1454 | #ifdef HAVE_STRING_H
1455 | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
1456 | #  include <memory.h>
1457 | # endif
1458 | # include <string.h>
1459 | #endif
1460 | #ifdef HAVE_STRINGS_H
1461 | # include <strings.h>
1462 | #endif
1463 | #ifdef HAVE_INTTYPES_H
1464 | # include <inttypes.h>
1465 | #endif
1466 | #ifdef HAVE_STDINT_H
1467 | # include <stdint.h>
1468 | #endif
1469 | #ifdef HAVE_UNISTD_H
1470 | # include <unistd.h>
1471 | #endif
1472 | int
1473 | main ()
1474 | {
1475 | static int test_array [1 - 2 * !((int32_t) ((((int32_t) 1 << (32 - 2)) - 1) * 2 + 1)
1476 |                < (int32_t) ((((int32_t) 1 << (32 - 2)) - 1) * 2 + 2))];
1477 | test_array [0] = 0
1478 |
1479 |   ;
1480 |   return 0;
1481 | }
1482 configure:23919: result: yes
1483 configure:23932: checking for int64_t
1484 configure:23963: gcc -c  -O2  conftest.c >&5
1485 configure:23970: $? = 0
1486 configure:23999: gcc -c  -O2  conftest.c >&5
1487 conftest.c: In function `main':
1488 conftest.c:97: warning: integer overflow in expression
1489 conftest.c:97: error: size of array `test_array' is negative
1490 configure:24006: $? = 1
1491 configure: failed program was:
1492 | /* confdefs.h.  */
1493 | #define PACKAGE_NAME ""
1494 | #define PACKAGE_TARNAME ""
1495 | #define PACKAGE_VERSION ""
1496 | #define PACKAGE_STRING ""
1497 | #define PACKAGE_BUGREPORT ""
1498 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
1499 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
1500 | #define USE_LOGGING MPID_LOGGING_NONE
1501 | #define HAVE_RUNTIME_THREADCHECK 1
1502 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
1503 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
1504 | #define HAVE_ROMIO 1
1505 | #define HAVE_LONG_LONG 1
1506 | #define F77_NAME_LOWER_2USCORE 1
1507 | #define STDCALL
1508 | #define HAVE_FORTRAN_BINDING 1
1509 | #define HAVE_CXX_EXCEPTIONS /**/
1510 | #define HAVE_NAMESPACES /**/
1511 | #define HAVE_NAMESPACE_STD /**/
1512 | #define HAVE_CXX_BINDING 1
1513 | #define HAVE_NAMEPUB_SERVICE 1
1514 | #define restrict __restrict
1515 | #define HAVE_GCC_ATTRIBUTE 1
1516 | #define HAVE_SYS_TYPES_H 1
1517 | #define HAVE_SYS_STAT_H 1
1518 | #define HAVE_STDLIB_H 1
1519 | #define HAVE_STRING_H 1
1520 | #define HAVE_MEMORY_H 1
1521 | #define HAVE_STRINGS_H 1
1522 | #define HAVE_INTTYPES_H 1
1523 | #define HAVE_STDINT_H 1
1524 | #define HAVE_UNISTD_H 1
1525 | #define WORDS_LITTLEENDIAN 1
1526 | #define HAVE_LONG_DOUBLE 1
1527 | #define HAVE_LONG_LONG_INT 1
1528 | #define HAVE_MAX_INTEGER_ALIGNMENT 8
1529 | #define HAVE_MAX_STRUCT_ALIGNMENT 8
1530 | #define HAVE_MAX_FP_ALIGNMENT 4
1531 | #define HAVE_MAX_DOUBLE_FP_ALIGNMENT 8
1532 | #define HAVE_MAX_LONG_DOUBLE_FP_ALIGNMENT 4
1533 | #define SIZEOF_CHAR 1
1534 | #define SIZEOF_UNSIGNED_CHAR 1
1535 | #define SIZEOF_SHORT 2
1536 | #define SIZEOF_UNSIGNED_SHORT 2
1537 | #define SIZEOF_INT 4
1538 | #define SIZEOF_UNSIGNED_INT 4
1539 | #define SIZEOF_LONG 4
1540 | #define SIZEOF_UNSIGNED_LONG 4
1541 | #define SIZEOF_LONG_LONG 8
1542 | #define SIZEOF_UNSIGNED_LONG_LONG 8
1543 | #define SIZEOF_FLOAT 4
1544 | #define SIZEOF_DOUBLE 8
1545 | #define SIZEOF_LONG_DOUBLE 12
1546 | #define SIZEOF_WCHAR_T 2
1547 | #define SIZEOF_VOID_P 4
1548 | #define HAVE_SYS_BITYPES_H 1
1549 | #define HAVE_INTTYPES_H 1
1550 | /* end confdefs.h.  */
1551 | #include <stdio.h>
1552 | #ifdef HAVE_SYS_TYPES_H
1553 | # include <sys/types.h>
1554 | #endif
1555 | #ifdef HAVE_SYS_STAT_H
1556 | # include <sys/stat.h>
1557 | #endif
1558 | #ifdef STDC_HEADERS
1559 | # include <stdlib.h>
1560 | # include <stddef.h>
1561 | #else
1562 | # ifdef HAVE_STDLIB_H
1563 | #  include <stdlib.h>
1564 | # endif
1565 | #endif
1566 | #ifdef HAVE_STRING_H
1567 | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
1568 | #  include <memory.h>
1569 | # endif
1570 | # include <string.h>
1571 | #endif
1572 | #ifdef HAVE_STRINGS_H
1573 | # include <strings.h>
1574 | #endif
1575 | #ifdef HAVE_INTTYPES_H
1576 | # include <inttypes.h>
1577 | #endif
1578 | #ifdef HAVE_STDINT_H
1579 | # include <stdint.h>
1580 | #endif
1581 | #ifdef HAVE_UNISTD_H
1582 | # include <unistd.h>
1583 | #endif
1584 | int
1585 | main ()
1586 | {
1587 | static int test_array [1 - 2 * !((int64_t) ((((int64_t) 1 << (64 - 2)) - 1) * 2 + 1)
1588 |                < (int64_t) ((((int64_t) 1 << (64 - 2)) - 1) * 2 + 2))];
1589 | test_array [0] = 0
1590 |
1591 |   ;
1592 |   return 0;
1593 | }
1594 configure:24035: result: yes
1595 configure:24081: checking for uint8_t
1596 configure:24112: gcc -c  -O2  conftest.c >&5
1597 configure:24119: $? = 0
1598 configure:24140: result: yes
1599 configure:24158: checking for uint16_t
1600 configure:24189: gcc -c  -O2  conftest.c >&5
1601 configure:24196: $? = 0
1602 configure:24217: result: yes
1603 configure:24231: checking for uint32_t
1604 configure:24262: gcc -c  -O2  conftest.c >&5
1605 configure:24269: $? = 0
1606 configure:24290: result: yes
1607 configure:24308: checking for uint64_t
1608 configure:24339: gcc -c  -O2  conftest.c >&5
1609 configure:24346: $? = 0
1610 configure:24367: result: yes
1611 configure:24732: checking for size of Fortran type integer
1612 configure:24768: gcc -c  -O2  conftestc.c >&5
1613 configure:24771: $? = 0
1614 configure:24790: g77 -o conftest.exe  -O2  conftest.f conftestc.o  >&5
1615 configure:24793: $? = 0
1616 configure:24829: result: 4
1617 configure:24840: checking for size of Fortran type real
1618 configure:24876: gcc -c  -O2  conftestc.c >&5
1619 configure:24879: $? = 0
1620 configure:24898: g77 -o conftest.exe  -O2  conftest.f conftestc.o  >&5
1621 configure:24901: $? = 0
1622 configure:24937: result: 4
1623 configure:24948: checking for size of Fortran type double precision
1624 configure:24984: gcc -c  -O2  conftestc.c >&5
1625 configure:24987: $? = 0
1626 configure:25006: g77 -o conftest.exe  -O2  conftest.f conftestc.o  >&5
1627 configure:25009: $? = 0
1628 configure:25045: result: 8
1629 configure:25064: checking whether integer*1 is supported
1630 configure:25081: g77 -c  -O2 conftest.f >&5
1631 configure:25088: $? = 0
1632 configure:25103: result: yes
1633 configure:25105: checking whether integer*2 is supported
1634 configure:25122: g77 -c  -O2 conftest.f >&5
1635 configure:25129: $? = 0
1636 configure:25144: result: yes
1637 configure:25146: checking whether integer*4 is supported
1638 configure:25163: g77 -c  -O2 conftest.f >&5
1639 configure:25170: $? = 0
1640 configure:25185: result: yes
1641 configure:25187: checking whether integer*8 is supported
1642 configure:25204: g77 -c  -O2 conftest.f >&5
1643 configure:25211: $? = 0
1644 configure:25226: result: yes
1645 configure:25228: checking whether integer*16 is supported
1646 configure:25245: g77 -c  -O2 conftest.f >&5
1647 conftest.f: In program `main':
1648 conftest.f:2:
1649          integer*16 i
1650          1       2
1651 Invalid kind at (2) for type at (1) -- unsupported or not permitted
1652 configure:25252: $? = 1
1653 configure: failed program was:
1654 |       program main
1655 |       integer*16 i
1656 |       end
1657 configure:25267: result: no
1658 configure:25269: checking whether real*4 is supported
1659 configure:25286: g77 -c  -O2 conftest.f >&5
1660 configure:25293: $? = 0
1661 configure:25308: result: yes
1662 configure:25310: checking whether real*8 is supported
1663 configure:25327: g77 -c  -O2 conftest.f >&5
1664 configure:25334: $? = 0
1665 configure:25349: result: yes
1666 configure:25351: checking whether real*16 is supported
1667 configure:25368: g77 -c  -O2 conftest.f >&5
1668 conftest.f: In program `main':
1669 conftest.f:2:
1670          real*16 a
1671          1    2
1672 Invalid kind at (2) for type at (1) -- unsupported or not permitted
1673 configure:25375: $? = 1
1674 configure: failed program was:
1675 |       program main
1676 |       real*16 a
1677 |       end
1678 configure:25390: result: no
1679 configure:25782: checking for C type matching Fortran integer
1680 configure:25789: result: int
1681 configure:25838: checking for size of MPI_Status
1682 configure:25881: gcc -o conftest.exe  -O2   conftest.c  >&5
1683 configure:25885: $? = 0
1684 configure:25891: ./conftest.exe
1685 configure:25895: $? = 0
1686 configure:25913: result: 20
1687 configure:25942: checking for values of Fortran logicals
1688 configure:25985: gcc -c  -O2  conftestc.c >&5
1689 configure:25988: $? = 0
1690 configure:25998: g77 -o conftest.exe  -O2  conftest.f conftestc.o  >&5
1691 configure:26001: $? = 0
1692 configure:26039: result: True is 1 and False is 0
1693 configure:26082: checking whether Fortran compiler is a Fortran 90 compiler
1694 configure:26103: result: no
1695 configure:27086: checking size of bool
1696 configure:27389: c++ -o conftest.exe  -O2   conftest.cpp  >&5
1697 configure:27393: $? = 0
1698 configure:27399: ./conftest.exe
1699 configure:27403: $? = 0
1700 configure:27427: result: 1
1701 configure:27442: checking how to run the C++ preprocessor
1702 configure:27478: c++ -E  conftest.cpp
1703 configure:27485: $? = 0
1704 configure:27516: c++ -E  conftest.cpp
1705 conftest.cpp:77:28: ac_nonexistent.h: No such file or directory
1706 configure:27523: $? = 1
1707 configure: failed program was:
1708 | /* confdefs.h.  */
1709 | #define PACKAGE_NAME ""
1710 | #define PACKAGE_TARNAME ""
1711 | #define PACKAGE_VERSION ""
1712 | #define PACKAGE_STRING ""
1713 | #define PACKAGE_BUGREPORT ""
1714 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
1715 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
1716 | #define USE_LOGGING MPID_LOGGING_NONE
1717 | #define HAVE_RUNTIME_THREADCHECK 1
1718 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
1719 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
1720 | #define HAVE_ROMIO 1
1721 | #define HAVE_LONG_LONG 1
1722 | #define F77_NAME_LOWER_2USCORE 1
1723 | #define STDCALL
1724 | #define HAVE_FORTRAN_BINDING 1
1725 | #define HAVE_CXX_EXCEPTIONS /**/
1726 | #define HAVE_NAMESPACES /**/
1727 | #define HAVE_NAMESPACE_STD /**/
1728 | #define HAVE_CXX_BINDING 1
1729 | #define HAVE_NAMEPUB_SERVICE 1
1730 | #define restrict __restrict
1731 | #define HAVE_GCC_ATTRIBUTE 1
1732 | #define HAVE_SYS_TYPES_H 1
1733 | #define HAVE_SYS_STAT_H 1
1734 | #define HAVE_STDLIB_H 1
1735 | #define HAVE_STRING_H 1
1736 | #define HAVE_MEMORY_H 1
1737 | #define HAVE_STRINGS_H 1
1738 | #define HAVE_INTTYPES_H 1
1739 | #define HAVE_STDINT_H 1
1740 | #define HAVE_UNISTD_H 1
1741 | #define WORDS_LITTLEENDIAN 1
1742 | #define HAVE_LONG_DOUBLE 1
1743 | #define HAVE_LONG_LONG_INT 1
1744 | #define HAVE_MAX_INTEGER_ALIGNMENT 8
1745 | #define HAVE_MAX_STRUCT_ALIGNMENT 8
1746 | #define HAVE_MAX_FP_ALIGNMENT 4
1747 | #define HAVE_MAX_DOUBLE_FP_ALIGNMENT 8
1748 | #define HAVE_MAX_LONG_DOUBLE_FP_ALIGNMENT 4
1749 | #define SIZEOF_CHAR 1
1750 | #define SIZEOF_UNSIGNED_CHAR 1
1751 | #define SIZEOF_SHORT 2
1752 | #define SIZEOF_UNSIGNED_SHORT 2
1753 | #define SIZEOF_INT 4
1754 | #define SIZEOF_UNSIGNED_INT 4
1755 | #define SIZEOF_LONG 4
1756 | #define SIZEOF_UNSIGNED_LONG 4
1757 | #define SIZEOF_LONG_LONG 8
1758 | #define SIZEOF_UNSIGNED_LONG_LONG 8
1759 | #define SIZEOF_FLOAT 4
1760 | #define SIZEOF_DOUBLE 8
1761 | #define SIZEOF_LONG_DOUBLE 12
1762 | #define SIZEOF_WCHAR_T 2
1763 | #define SIZEOF_VOID_P 4
1764 | #define HAVE_SYS_BITYPES_H 1
1765 | #define HAVE_INTTYPES_H 1
1766 | #define HAVE_INT16_T 1
1767 | #define HAVE_INT32_T 1
1768 | #define HAVE_INT64_T 1
1769 | #define MPIR_REAL4_CTYPE float
1770 | #define MPIR_REAL8_CTYPE double
1771 | #define MPIR_INTEGER1_CTYPE char
1772 | #define MPIR_INTEGER2_CTYPE short
1773 | #define MPIR_INTEGER4_CTYPE int
1774 | #define MPIR_INTEGER8_CTYPE long long
1775 | #define SIZEOF_F77_INTEGER 4
1776 | #define SIZEOF_F77_REAL 4
1777 | #define SIZEOF_F77_DOUBLE_PRECISION 8
1778 | #define HAVE_FINT_IS_INT 1
1779 | #define F77_TRUE_VALUE_SET 1
1780 | #define F77_TRUE_VALUE 1
1781 | #define F77_FALSE_VALUE 0
1782 | #define SIZEOF_BOOL 1
1783 | /* end confdefs.h.  */
1784 | #include <ac_nonexistent.h>
1785 configure:27556: result: c++ -E
1786 configure:27585: c++ -E  conftest.cpp
1787 configure:27592: $? = 0
1788 configure:27623: c++ -E  conftest.cpp
1789 conftest.cpp:77:28: ac_nonexistent.h: No such file or directory
1790 configure:27630: $? = 1
1791 configure: failed program was:
1792 | /* confdefs.h.  */
1793 | #define PACKAGE_NAME ""
1794 | #define PACKAGE_TARNAME ""
1795 | #define PACKAGE_VERSION ""
1796 | #define PACKAGE_STRING ""
1797 | #define PACKAGE_BUGREPORT ""
1798 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
1799 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
1800 | #define USE_LOGGING MPID_LOGGING_NONE
1801 | #define HAVE_RUNTIME_THREADCHECK 1
1802 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
1803 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
1804 | #define HAVE_ROMIO 1
1805 | #define HAVE_LONG_LONG 1
1806 | #define F77_NAME_LOWER_2USCORE 1
1807 | #define STDCALL
1808 | #define HAVE_FORTRAN_BINDING 1
1809 | #define HAVE_CXX_EXCEPTIONS /**/
1810 | #define HAVE_NAMESPACES /**/
1811 | #define HAVE_NAMESPACE_STD /**/
1812 | #define HAVE_CXX_BINDING 1
1813 | #define HAVE_NAMEPUB_SERVICE 1
1814 | #define restrict __restrict
1815 | #define HAVE_GCC_ATTRIBUTE 1
1816 | #define HAVE_SYS_TYPES_H 1
1817 | #define HAVE_SYS_STAT_H 1
1818 | #define HAVE_STDLIB_H 1
1819 | #define HAVE_STRING_H 1
1820 | #define HAVE_MEMORY_H 1
1821 | #define HAVE_STRINGS_H 1
1822 | #define HAVE_INTTYPES_H 1
1823 | #define HAVE_STDINT_H 1
1824 | #define HAVE_UNISTD_H 1
1825 | #define WORDS_LITTLEENDIAN 1
1826 | #define HAVE_LONG_DOUBLE 1
1827 | #define HAVE_LONG_LONG_INT 1
1828 | #define HAVE_MAX_INTEGER_ALIGNMENT 8
1829 | #define HAVE_MAX_STRUCT_ALIGNMENT 8
1830 | #define HAVE_MAX_FP_ALIGNMENT 4
1831 | #define HAVE_MAX_DOUBLE_FP_ALIGNMENT 8
1832 | #define HAVE_MAX_LONG_DOUBLE_FP_ALIGNMENT 4
1833 | #define SIZEOF_CHAR 1
1834 | #define SIZEOF_UNSIGNED_CHAR 1
1835 | #define SIZEOF_SHORT 2
1836 | #define SIZEOF_UNSIGNED_SHORT 2
1837 | #define SIZEOF_INT 4
1838 | #define SIZEOF_UNSIGNED_INT 4
1839 | #define SIZEOF_LONG 4
1840 | #define SIZEOF_UNSIGNED_LONG 4
1841 | #define SIZEOF_LONG_LONG 8
1842 | #define SIZEOF_UNSIGNED_LONG_LONG 8
1843 | #define SIZEOF_FLOAT 4
1844 | #define SIZEOF_DOUBLE 8
1845 | #define SIZEOF_LONG_DOUBLE 12
1846 | #define SIZEOF_WCHAR_T 2
1847 | #define SIZEOF_VOID_P 4
1848 | #define HAVE_SYS_BITYPES_H 1
1849 | #define HAVE_INTTYPES_H 1
1850 | #define HAVE_INT16_T 1
1851 | #define HAVE_INT32_T 1
1852 | #define HAVE_INT64_T 1
1853 | #define MPIR_REAL4_CTYPE float
1854 | #define MPIR_REAL8_CTYPE double
1855 | #define MPIR_INTEGER1_CTYPE char
1856 | #define MPIR_INTEGER2_CTYPE short
1857 | #define MPIR_INTEGER4_CTYPE int
1858 | #define MPIR_INTEGER8_CTYPE long long
1859 | #define SIZEOF_F77_INTEGER 4
1860 | #define SIZEOF_F77_REAL 4
1861 | #define SIZEOF_F77_DOUBLE_PRECISION 8
1862 | #define HAVE_FINT_IS_INT 1
1863 | #define F77_TRUE_VALUE_SET 1
1864 | #define F77_TRUE_VALUE 1
1865 | #define F77_FALSE_VALUE 0
1866 | #define SIZEOF_BOOL 1
1867 | /* end confdefs.h.  */
1868 | #include <ac_nonexistent.h>
1869 configure:27669: checking for complex
1870 configure:27690: c++ -E  conftest.cpp
1871 configure:27697: $? = 0
1872 configure:27744: result: yes
1873 configure:27759: checking size of Complex
1874 configure:28092: c++ -o conftest.exe  -O2   conftest.cpp  >&5
1875 configure:28096: $? = 0
1876 configure:28102: ./conftest.exe
1877 configure:28106: $? = 0
1878 configure:28130: result: 8
1879 configure:28144: checking size of DoubleComplex
1880 configure:28477: c++ -o conftest.exe  -O2   conftest.cpp  >&5
1881 configure:28481: $? = 0
1882 configure:28487: ./conftest.exe
1883 configure:28491: $? = 0
1884 configure:28515: result: 16
1885 configure:28530: checking size of LongDoubleComplex
1886 configure:28863: c++ -o conftest.exe  -O2   conftest.cpp  >&5
1887 configure:28867: $? = 0
1888 configure:28873: ./conftest.exe
1889 configure:28877: $? = 0
1890 configure:28901: result: 24
1891 configure:28982: checking if char * pointers use byte addresses
1892 configure:29010: gcc -o conftest.exe  -O2   conftest.c  >&5
1893 configure:29014: $? = 0
1894 configure:29020: ./conftest.exe
1895 configure:29024: $? = 0
1896 configure:29041: result: yes
1897 configure:29068: checking for alignment restrictions on
1898 configure:29112: gcc -o conftest.exe  -O2   conftest.c  >&5
1899 configure:29116: $? = 0
1900 configure:29122: ./conftest.exe
1901 configure:29126: $? = 0
1902 configure:29144: result: no
1903 configure:29165: checking for alignment restrictions on int32_t
1904 configure:29209: gcc -o conftest.exe  -O2   conftest.c  >&5
1905 configure:29213: $? = 0
1906 configure:29219: ./conftest.exe
1907 configure:29223: $? = 0
1908 configure:29241: result: no
1909 configure:29267: checking for size of MPI_BSEND_OVERHEAD
1910 configure:29319: gcc -o conftest.exe  -O2   conftest.c  >&5
1911 configure:29323: $? = 0
1912 configure:29329: ./conftest.exe
1913 configure:29333: $? = 0
1914 configure:29351: result: 59
1915 configure:29371: checking for gcc __asm__ and pentium cmpxchgl instruction
1916 configure:29405: gcc -o conftest.exe  -O2   conftest.c  >&5
1917 configure:29409: $? = 0
1918 configure:29415: ./conftest.exe
1919 configure:29419: $? = 0
1920 configure:29421: result: yes
1921 configure:29454: checking for gcc __asm__ and AMD x86_64 cmpxchgq instruction
1922 configure:29488: gcc -o conftest.exe  -O2   conftest.c  >&5
1923 /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccGdSsI2.s: Assembler messages:
1924 /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccGdSsI2.s:20: Error: suffix or operands invalid for `cmpxchg'
1925 configure:29492: $? = 1
1926 configure: program exited with status 1
1927 configure: failed program was:
1928 | /* confdefs.h.  */
1929 | #define PACKAGE_NAME ""
1930 | #define PACKAGE_TARNAME ""
1931 | #define PACKAGE_VERSION ""
1932 | #define PACKAGE_STRING ""
1933 | #define PACKAGE_BUGREPORT ""
1934 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
1935 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
1936 | #define USE_LOGGING MPID_LOGGING_NONE
1937 | #define HAVE_RUNTIME_THREADCHECK 1
1938 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
1939 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
1940 | #define HAVE_ROMIO 1
1941 | #define HAVE_LONG_LONG 1
1942 | #define F77_NAME_LOWER_2USCORE 1
1943 | #define STDCALL
1944 | #define HAVE_FORTRAN_BINDING 1
1945 | #define HAVE_CXX_EXCEPTIONS /**/
1946 | #define HAVE_NAMESPACES /**/
1947 | #define HAVE_NAMESPACE_STD /**/
1948 | #define HAVE_CXX_BINDING 1
1949 | #define HAVE_NAMEPUB_SERVICE 1
1950 | #define restrict __restrict
1951 | #define HAVE_GCC_ATTRIBUTE 1
1952 | #define HAVE_SYS_TYPES_H 1
1953 | #define HAVE_SYS_STAT_H 1
1954 | #define HAVE_STDLIB_H 1
1955 | #define HAVE_STRING_H 1
1956 | #define HAVE_MEMORY_H 1
1957 | #define HAVE_STRINGS_H 1
1958 | #define HAVE_INTTYPES_H 1
1959 | #define HAVE_STDINT_H 1
1960 | #define HAVE_UNISTD_H 1
1961 | #define WORDS_LITTLEENDIAN 1
1962 | #define HAVE_LONG_DOUBLE 1
1963 | #define HAVE_LONG_LONG_INT 1
1964 | #define HAVE_MAX_INTEGER_ALIGNMENT 8
1965 | #define HAVE_MAX_STRUCT_ALIGNMENT 8
1966 | #define HAVE_MAX_FP_ALIGNMENT 4
1967 | #define HAVE_MAX_DOUBLE_FP_ALIGNMENT 8
1968 | #define HAVE_MAX_LONG_DOUBLE_FP_ALIGNMENT 4
1969 | #define SIZEOF_CHAR 1
1970 | #define SIZEOF_UNSIGNED_CHAR 1
1971 | #define SIZEOF_SHORT 2
1972 | #define SIZEOF_UNSIGNED_SHORT 2
1973 | #define SIZEOF_INT 4
1974 | #define SIZEOF_UNSIGNED_INT 4
1975 | #define SIZEOF_LONG 4
1976 | #define SIZEOF_UNSIGNED_LONG 4
1977 | #define SIZEOF_LONG_LONG 8
1978 | #define SIZEOF_UNSIGNED_LONG_LONG 8
1979 | #define SIZEOF_FLOAT 4
1980 | #define SIZEOF_DOUBLE 8
1981 | #define SIZEOF_LONG_DOUBLE 12
1982 | #define SIZEOF_WCHAR_T 2
1983 | #define SIZEOF_VOID_P 4
1984 | #define HAVE_SYS_BITYPES_H 1
1985 | #define HAVE_INTTYPES_H 1
1986 | #define HAVE_INT16_T 1
1987 | #define HAVE_INT32_T 1
1988 | #define HAVE_INT64_T 1
1989 | #define MPIR_REAL4_CTYPE float
1990 | #define MPIR_REAL8_CTYPE double
1991 | #define MPIR_INTEGER1_CTYPE char
1992 | #define MPIR_INTEGER2_CTYPE short
1993 | #define MPIR_INTEGER4_CTYPE int
1994 | #define MPIR_INTEGER8_CTYPE long long
1995 | #define SIZEOF_F77_INTEGER 4
1996 | #define SIZEOF_F77_REAL 4
1997 | #define SIZEOF_F77_DOUBLE_PRECISION 8
1998 | #define HAVE_FINT_IS_INT 1
1999 | #define F77_TRUE_VALUE_SET 1
2000 | #define F77_TRUE_VALUE 1
2001 | #define F77_FALSE_VALUE 0
2002 | #define SIZEOF_BOOL 1
2003 | #define SIZEOF_COMPLEX 8
2004 | #define SIZEOF_DOUBLECOMPLEX 16
2005 | #define SIZEOF_LONGDOUBLECOMPLEX 24
2006 | #define MPIR_CXX_COMPLEX_VALUE 0x4c000834
2007 | #define MPIR_CXX_DOUBLE_COMPLEX_VALUE 0x4c001035
2008 | #define MPIR_CXX_LONG_DOUBLE_COMPLEX_VALUE 0x4c001836
2009 | #define HAVE_CXX_COMPLEX 1
2010 | #define HAVE_ANY_INT64_T_ALIGNMENT 1
2011 | #define HAVE_ANY_INT32_T_ALIGNMENT 1
2012 | #define HAVE_GCC_AND_PENTIUM_ASM 1
2013 | #define USE_ATOMIC_UPDATES /**/
2014 | /* end confdefs.h.  */
2015 |
2016 | int main(int argc, char *argv[])
2017 | {
2018 | long int compval = 10;
2019 | volatile long int *p = &compval;
2020 | long int oldval = 10;
2021 | long int newval = 20;
2022 | char ret;
2023 | long int readval;
2024 | __asm__ __volatile__ ("lock; cmpxchgq %3, %1; sete %0"
2025 |       : "=q" (ret), "=m" (*p), "=a" (readval)
2026 |       : "r" (newval), "m" (*p), "a" (oldval) : "memory");
2027 | return (compval == 20) ? 0 : -1;
2028 | }
2029 |
2030 configure:29517: result: no
2031 configure:29527: checking for gcc __asm__ and IA64 xchg4 instruction
2032 configure:29562: gcc -o conftest.exe  -O2   conftest.c  >&5
2033 /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccL1eNOe.s: Assembler messages:
2034 /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccL1eNOe.s:12: Error: no such instruction: `xchg4 %eax=[%eax],%edx'
2035 configure:29566: $? = 1
2036 configure: program exited with status 1
2037 configure: failed program was:
2038 | /* confdefs.h.  */
2039 | #define PACKAGE_NAME ""
2040 | #define PACKAGE_TARNAME ""
2041 | #define PACKAGE_VERSION ""
2042 | #define PACKAGE_STRING ""
2043 | #define PACKAGE_BUGREPORT ""
2044 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
2045 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
2046 | #define USE_LOGGING MPID_LOGGING_NONE
2047 | #define HAVE_RUNTIME_THREADCHECK 1
2048 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
2049 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
2050 | #define HAVE_ROMIO 1
2051 | #define HAVE_LONG_LONG 1
2052 | #define F77_NAME_LOWER_2USCORE 1
2053 | #define STDCALL
2054 | #define HAVE_FORTRAN_BINDING 1
2055 | #define HAVE_CXX_EXCEPTIONS /**/
2056 | #define HAVE_NAMESPACES /**/
2057 | #define HAVE_NAMESPACE_STD /**/
2058 | #define HAVE_CXX_BINDING 1
2059 | #define HAVE_NAMEPUB_SERVICE 1
2060 | #define restrict __restrict
2061 | #define HAVE_GCC_ATTRIBUTE 1
2062 | #define HAVE_SYS_TYPES_H 1
2063 | #define HAVE_SYS_STAT_H 1
2064 | #define HAVE_STDLIB_H 1
2065 | #define HAVE_STRING_H 1
2066 | #define HAVE_MEMORY_H 1
2067 | #define HAVE_STRINGS_H 1
2068 | #define HAVE_INTTYPES_H 1
2069 | #define HAVE_STDINT_H 1
2070 | #define HAVE_UNISTD_H 1
2071 | #define WORDS_LITTLEENDIAN 1
2072 | #define HAVE_LONG_DOUBLE 1
2073 | #define HAVE_LONG_LONG_INT 1
2074 | #define HAVE_MAX_INTEGER_ALIGNMENT 8
2075 | #define HAVE_MAX_STRUCT_ALIGNMENT 8
2076 | #define HAVE_MAX_FP_ALIGNMENT 4
2077 | #define HAVE_MAX_DOUBLE_FP_ALIGNMENT 8
2078 | #define HAVE_MAX_LONG_DOUBLE_FP_ALIGNMENT 4
2079 | #define SIZEOF_CHAR 1
2080 | #define SIZEOF_UNSIGNED_CHAR 1
2081 | #define SIZEOF_SHORT 2
2082 | #define SIZEOF_UNSIGNED_SHORT 2
2083 | #define SIZEOF_INT 4
2084 | #define SIZEOF_UNSIGNED_INT 4
2085 | #define SIZEOF_LONG 4
2086 | #define SIZEOF_UNSIGNED_LONG 4
2087 | #define SIZEOF_LONG_LONG 8
2088 | #define SIZEOF_UNSIGNED_LONG_LONG 8
2089 | #define SIZEOF_FLOAT 4
2090 | #define SIZEOF_DOUBLE 8
2091 | #define SIZEOF_LONG_DOUBLE 12
2092 | #define SIZEOF_WCHAR_T 2
2093 | #define SIZEOF_VOID_P 4
2094 | #define HAVE_SYS_BITYPES_H 1
2095 | #define HAVE_INTTYPES_H 1
2096 | #define HAVE_INT16_T 1
2097 | #define HAVE_INT32_T 1
2098 | #define HAVE_INT64_T 1
2099 | #define MPIR_REAL4_CTYPE float
2100 | #define MPIR_REAL8_CTYPE double
2101 | #define MPIR_INTEGER1_CTYPE char
2102 | #define MPIR_INTEGER2_CTYPE short
2103 | #define MPIR_INTEGER4_CTYPE int
2104 | #define MPIR_INTEGER8_CTYPE long long
2105 | #define SIZEOF_F77_INTEGER 4
2106 | #define SIZEOF_F77_REAL 4
2107 | #define SIZEOF_F77_DOUBLE_PRECISION 8
2108 | #define HAVE_FINT_IS_INT 1
2109 | #define F77_TRUE_VALUE_SET 1
2110 | #define F77_TRUE_VALUE 1
2111 | #define F77_FALSE_VALUE 0
2112 | #define SIZEOF_BOOL 1
2113 | #define SIZEOF_COMPLEX 8
2114 | #define SIZEOF_DOUBLECOMPLEX 16
2115 | #define SIZEOF_LONGDOUBLECOMPLEX 24
2116 | #define MPIR_CXX_COMPLEX_VALUE 0x4c000834
2117 | #define MPIR_CXX_DOUBLE_COMPLEX_VALUE 0x4c001035
2118 | #define MPIR_CXX_LONG_DOUBLE_COMPLEX_VALUE 0x4c001836
2119 | #define HAVE_CXX_COMPLEX 1
2120 | #define HAVE_ANY_INT64_T_ALIGNMENT 1
2121 | #define HAVE_ANY_INT32_T_ALIGNMENT 1
2122 | #define HAVE_GCC_AND_PENTIUM_ASM 1
2123 | #define USE_ATOMIC_UPDATES /**/
2124 | /* end confdefs.h.  */
2125 |
2126 | unsigned long _InterlockedExchange(volatile void *ptr, unsigned long x)
2127 | {
2128 |    unsigned long result;
2129 |    __asm__ __volatile ("xchg4 %0=[%1],%2" : "=r" (result)
2130 |        : "r" (ptr), "r" (x) : "memory");
2131 |    return result;
2132 | }
2133 | int main(int argc, char *argv[])
2134 | {
2135 | long val = 1;
2136 | volatile long *p = &val;
2137 | long oldval = _InterlockedExchange(p, (unsigned long)2);
2138 | return (oldval == 1 && val == 2) ? 0 : -1;
2139 | }
2140 |
2141 configure:29591: result: no
2142 configure:29813: checking for ANSI C header files
2143 configure:29981: result: no
2144 configure:30010: checking for stdlib.h
2145 configure:30085: result: yes
2146 configure:30010: checking for stdarg.h
2147 configure:30031:   conftest.c
2148 [?1034h]0;~
2149 Cornelius@CorneliusVAIO ~
2150 $ logout
2151 [?1034h]0;~
2152 Cornelius@CorneliusVAIO ~
2153 $ logout
2154 configure:30038: $? = 0
2155 configure:30085: result: yes
2156 configure:30010: checking for sys/types.h
2157 configure:30085: result: yes
2158 configure:30010: checking for inttypes.h
2159 configure:30085: result: yes
2160 configure:30010: checking for limits.h
2161 configure:30031:   conftest.c
2162 [?1034h]0;~
2163 Cornelius@CorneliusVAIO ~
2164 $ logout
2165 [?1034h]0;~
2166 Cornelius@CorneliusVAIO ~
2167 $ logout
2168 configure:30038: $? = 0
2169 configure:30085: result: yes
2170 configure:30010: checking for stddef.h
2171 configure:30031:   conftest.c
2172 [?1034h]0;~
2173 Cornelius@CorneliusVAIO ~
2174 $ logout
2175 [?1034h]0;~
2176 Cornelius@CorneliusVAIO ~
2177 $ logout
2178 configure:30038: $? = 0
2179 configure:30085: result: yes
2180 configure:30010: checking for errno.h
2181 configure:30031:   conftest.c
2182 [?1034h]0;~
2183 Cornelius@CorneliusVAIO ~
2184 $ logout
2185 [?1034h]0;~
2186 Cornelius@CorneliusVAIO ~
2187 $ logout
2188 configure:30038: $? = 0
2189 configure:30085: result: yes
2190 configure:30010: checking for sys/socket.h
2191 configure:30031:   conftest.c
2192 [?1034h]0;~
2193 Cornelius@CorneliusVAIO ~
2194 $ logout
2195 [?1034h]0;~
2196 Cornelius@CorneliusVAIO ~
2197 $ logout
2198 configure:30038: $? = 0
2199 configure:30085: result: yes
2200 configure:30010: checking for sys/time.h
2201 configure:30031:   conftest.c
2202 [?1034h]0;~
2203 Cornelius@CorneliusVAIO ~
2204 $ logout
2205 [?1034h]0;~
2206 Cornelius@CorneliusVAIO ~
2207 $ logout
2208 configure:30038: $? = 0
2209 configure:30085: result: yes
2210 configure:30010: checking for unistd.h
2211 configure:30085: result: yes
2212 configure:30010: checking for endian.h
2213 configure:30031:   conftest.c
2214 [?1034h]0;~
2215 Cornelius@CorneliusVAIO ~
2216 $ logout
2217 [?1034h]0;~
2218 Cornelius@CorneliusVAIO ~
2219 $ logout
2220 configure:30038: $? = 0
2221 configure:30085: result: yes
2222 configure:30010: checking for assert.h
2223 configure:30031:   conftest.c
2224 [?1034h]0;~
2225 Cornelius@CorneliusVAIO ~
2226 $ logout
2227 [?1034h]0;~
2228 Cornelius@CorneliusVAIO ~
2229 $ logout
2230 configure:30038: $? = 0
2231 configure:30085: result: yes
2232 configure:30097: checking for sys/uio.h
2233 configure:30127: gcc -c  -O2  conftest.c >&5
2234 configure:30134: $? = 0
2235 configure:30149: result: yes
2236 configure:30160: checking for size_t
2237 configure:30188: gcc -c  -O2  conftest.c >&5
2238 configure:30195: $? = 0
2239 configure:30222: gcc -c  -O2  conftest.c >&5
2240 conftest.c: In function `main':
2241 conftest.c:137: error: parse error before ')' token
2242 configure:30229: $? = 1
2243 configure: failed program was:
2244 | /* confdefs.h.  */
2245 | #define PACKAGE_NAME ""
2246 | #define PACKAGE_TARNAME ""
2247 | #define PACKAGE_VERSION ""
2248 | #define PACKAGE_STRING ""
2249 | #define PACKAGE_BUGREPORT ""
2250 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
2251 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
2252 | #define USE_LOGGING MPID_LOGGING_NONE
2253 | #define HAVE_RUNTIME_THREADCHECK 1
2254 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
2255 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
2256 | #define HAVE_ROMIO 1
2257 | #define HAVE_LONG_LONG 1
2258 | #define F77_NAME_LOWER_2USCORE 1
2259 | #define STDCALL
2260 | #define HAVE_FORTRAN_BINDING 1
2261 | #define HAVE_CXX_EXCEPTIONS /**/
2262 | #define HAVE_NAMESPACES /**/
2263 | #define HAVE_NAMESPACE_STD /**/
2264 | #define HAVE_CXX_BINDING 1
2265 | #define HAVE_NAMEPUB_SERVICE 1
2266 | #define restrict __restrict
2267 | #define HAVE_GCC_ATTRIBUTE 1
2268 | #define HAVE_SYS_TYPES_H 1
2269 | #define HAVE_SYS_STAT_H 1
2270 | #define HAVE_STDLIB_H 1
2271 | #define HAVE_STRING_H 1
2272 | #define HAVE_MEMORY_H 1
2273 | #define HAVE_STRINGS_H 1
2274 | #define HAVE_INTTYPES_H 1
2275 | #define HAVE_STDINT_H 1
2276 | #define HAVE_UNISTD_H 1
2277 | #define WORDS_LITTLEENDIAN 1
2278 | #define HAVE_LONG_DOUBLE 1
2279 | #define HAVE_LONG_LONG_INT 1
2280 | #define HAVE_MAX_INTEGER_ALIGNMENT 8
2281 | #define HAVE_MAX_STRUCT_ALIGNMENT 8
2282 | #define HAVE_MAX_FP_ALIGNMENT 4
2283 | #define HAVE_MAX_DOUBLE_FP_ALIGNMENT 8
2284 | #define HAVE_MAX_LONG_DOUBLE_FP_ALIGNMENT 4
2285 | #define SIZEOF_CHAR 1
2286 | #define SIZEOF_UNSIGNED_CHAR 1
2287 | #define SIZEOF_SHORT 2
2288 | #define SIZEOF_UNSIGNED_SHORT 2
2289 | #define SIZEOF_INT 4
2290 | #define SIZEOF_UNSIGNED_INT 4
2291 | #define SIZEOF_LONG 4
2292 | #define SIZEOF_UNSIGNED_LONG 4
2293 | #define SIZEOF_LONG_LONG 8
2294 | #define SIZEOF_UNSIGNED_LONG_LONG 8
2295 | #define SIZEOF_FLOAT 4
2296 | #define SIZEOF_DOUBLE 8
2297 | #define SIZEOF_LONG_DOUBLE 12
2298 | #define SIZEOF_WCHAR_T 2
2299 | #define SIZEOF_VOID_P 4
2300 | #define HAVE_SYS_BITYPES_H 1
2301 | #define HAVE_INTTYPES_H 1
2302 | #define HAVE_INT16_T 1
2303 | #define HAVE_INT32_T 1
2304 | #define HAVE_INT64_T 1
2305 | #define MPIR_REAL4_CTYPE float
2306 | #define MPIR_REAL8_CTYPE double
2307 | #define MPIR_INTEGER1_CTYPE char
2308 | #define MPIR_INTEGER2_CTYPE short
2309 | #define MPIR_INTEGER4_CTYPE int
2310 | #define MPIR_INTEGER8_CTYPE long long
2311 | #define SIZEOF_F77_INTEGER 4
2312 | #define SIZEOF_F77_REAL 4
2313 | #define SIZEOF_F77_DOUBLE_PRECISION 8
2314 | #define HAVE_FINT_IS_INT 1
2315 | #define F77_TRUE_VALUE_SET 1
2316 | #define F77_TRUE_VALUE 1
2317 | #define F77_FALSE_VALUE 0
2318 | #define SIZEOF_BOOL 1
2319 | #define SIZEOF_COMPLEX 8
2320 | #define SIZEOF_DOUBLECOMPLEX 16
2321 | #define SIZEOF_LONGDOUBLECOMPLEX 24
2322 | #define MPIR_CXX_COMPLEX_VALUE 0x4c000834
2323 | #define MPIR_CXX_DOUBLE_COMPLEX_VALUE 0x4c001035
2324 | #define MPIR_CXX_LONG_DOUBLE_COMPLEX_VALUE 0x4c001836
2325 | #define HAVE_CXX_COMPLEX 1
2326 | #define HAVE_ANY_INT64_T_ALIGNMENT 1
2327 | #define HAVE_ANY_INT32_T_ALIGNMENT 1
2328 | #define HAVE_GCC_AND_PENTIUM_ASM 1
2329 | #define USE_ATOMIC_UPDATES /**/
2330 | #define HAVE_STDLIB_H 1
2331 | #define HAVE_STDARG_H 1
2332 | #define HAVE_SYS_TYPES_H 1
2333 | #define HAVE_INTTYPES_H 1
2334 | #define HAVE_LIMITS_H 1
2335 | #define HAVE_STDDEF_H 1
2336 | #define HAVE_ERRNO_H 1
2337 | #define HAVE_SYS_SOCKET_H 1
2338 | #define HAVE_SYS_TIME_H 1
2339 | #define HAVE_UNISTD_H 1
2340 | #define HAVE_ENDIAN_H 1
2341 | #define HAVE_ASSERT_H 1
2342 | #define HAVE_SYS_UIO_H 1
2343 | /* end confdefs.h.  */
2344 | #include <stdio.h>
2345 | #ifdef HAVE_SYS_TYPES_H
2346 | # include <sys/types.h>
2347 | #endif
2348 | #ifdef HAVE_SYS_STAT_H
2349 | # include <sys/stat.h>
2350 | #endif
2351 | #ifdef STDC_HEADERS
2352 | # include <stdlib.h>
2353 | # include <stddef.h>
2354 | #else
2355 | # ifdef HAVE_STDLIB_H
2356 | #  include <stdlib.h>
2357 | # endif
2358 | #endif
2359 | #ifdef HAVE_STRING_H
2360 | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
2361 | #  include <memory.h>
2362 | # endif
2363 | # include <string.h>
2364 | #endif
2365 | #ifdef HAVE_STRINGS_H
2366 | # include <strings.h>
2367 | #endif
2368 | #ifdef HAVE_INTTYPES_H
2369 | # include <inttypes.h>
2370 | #endif
2371 | #ifdef HAVE_STDINT_H
2372 | # include <stdint.h>
2373 | #endif
2374 | #ifdef HAVE_UNISTD_H
2375 | # include <unistd.h>
2376 | #endif
2377 | int
2378 | main ()
2379 | {
2380 | if (sizeof ((size_t)))
2381 |         return 0;
2382 |   ;
2383 |   return 0;
2384 | }
2385 configure:30252: result: yes
2386 configure:30271: checking for setitimer
2387 configure:30327: gcc -o conftest.exe  -O2   conftest.c  >&5
2388 configure:30334: $? = 0
2389 configure:30356: result: yes
2390 configure:30271: checking for alarm
2391 configure:30327: gcc -o conftest.exe  -O2   conftest.c  >&5
2392 configure:30334: $? = 0
2393 configure:30356: result: yes
2394 configure:30373: checking for vsnprintf
2395 configure:30429: gcc -o conftest.exe  -O2   conftest.c  >&5
2396 conftest.c:126: warning: conflicting types for built-in function 'vsnprintf'
2397 configure:30436: $? = 0
2398 configure:30458: result: yes
2399 configure:30373: checking for vsprintf
2400 configure:30429: gcc -o conftest.exe  -O2   conftest.c  >&5
2401 conftest.c:127: warning: conflicting types for built-in function 'vsprintf'
2402 configure:30436: $? = 0
2403 configure:30458: result: yes
2404 configure:30472: checking whether vsnprintf needs a declaration
2405 configure:30501: gcc -c  -O2  conftest.c >&5
2406 conftest.c:107: error: conflicting types for 'vsnprintf'
2407 conftest.c:107: error: conflicting types for 'vsnprintf'
2408 configure:30508: $? = 1
2409 configure: failed program was:
2410 | /* confdefs.h.  */
2411 | #define PACKAGE_NAME ""
2412 | #define PACKAGE_TARNAME ""
2413 | #define PACKAGE_VERSION ""
2414 | #define PACKAGE_STRING ""
2415 | #define PACKAGE_BUGREPORT ""
2416 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
2417 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
2418 | #define USE_LOGGING MPID_LOGGING_NONE
2419 | #define HAVE_RUNTIME_THREADCHECK 1
2420 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
2421 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
2422 | #define HAVE_ROMIO 1
2423 | #define HAVE_LONG_LONG 1
2424 | #define F77_NAME_LOWER_2USCORE 1
2425 | #define STDCALL
2426 | #define HAVE_FORTRAN_BINDING 1
2427 | #define HAVE_CXX_EXCEPTIONS /**/
2428 | #define HAVE_NAMESPACES /**/
2429 | #define HAVE_NAMESPACE_STD /**/
2430 | #define HAVE_CXX_BINDING 1
2431 | #define HAVE_NAMEPUB_SERVICE 1
2432 | #define restrict __restrict
2433 | #define HAVE_GCC_ATTRIBUTE 1
2434 | #define HAVE_SYS_TYPES_H 1
2435 | #define HAVE_SYS_STAT_H 1
2436 | #define HAVE_STDLIB_H 1
2437 | #define HAVE_STRING_H 1
2438 | #define HAVE_MEMORY_H 1
2439 | #define HAVE_STRINGS_H 1
2440 | #define HAVE_INTTYPES_H 1
2441 | #define HAVE_STDINT_H 1
2442 | #define HAVE_UNISTD_H 1
2443 | #define WORDS_LITTLEENDIAN 1
2444 | #define HAVE_LONG_DOUBLE 1
2445 | #define HAVE_LONG_LONG_INT 1
2446 | #define HAVE_MAX_INTEGER_ALIGNMENT 8
2447 | #define HAVE_MAX_STRUCT_ALIGNMENT 8
2448 | #define HAVE_MAX_FP_ALIGNMENT 4
2449 | #define HAVE_MAX_DOUBLE_FP_ALIGNMENT 8
2450 | #define HAVE_MAX_LONG_DOUBLE_FP_ALIGNMENT 4
2451 | #define SIZEOF_CHAR 1
2452 | #define SIZEOF_UNSIGNED_CHAR 1
2453 | #define SIZEOF_SHORT 2
2454 | #define SIZEOF_UNSIGNED_SHORT 2
2455 | #define SIZEOF_INT 4
2456 | #define SIZEOF_UNSIGNED_INT 4
2457 | #define SIZEOF_LONG 4
2458 | #define SIZEOF_UNSIGNED_LONG 4
2459 | #define SIZEOF_LONG_LONG 8
2460 | #define SIZEOF_UNSIGNED_LONG_LONG 8
2461 | #define SIZEOF_FLOAT 4
2462 | #define SIZEOF_DOUBLE 8
2463 | #define SIZEOF_LONG_DOUBLE 12
2464 | #define SIZEOF_WCHAR_T 2
2465 | #define SIZEOF_VOID_P 4
2466 | #define HAVE_SYS_BITYPES_H 1
2467 | #define HAVE_INTTYPES_H 1
2468 | #define HAVE_INT16_T 1
2469 | #define HAVE_INT32_T 1
2470 | #define HAVE_INT64_T 1
2471 | #define MPIR_REAL4_CTYPE float
2472 | #define MPIR_REAL8_CTYPE double
2473 | #define MPIR_INTEGER1_CTYPE char
2474 | #define MPIR_INTEGER2_CTYPE short
2475 | #define MPIR_INTEGER4_CTYPE int
2476 | #define MPIR_INTEGER8_CTYPE long long
2477 | #define SIZEOF_F77_INTEGER 4
2478 | #define SIZEOF_F77_REAL 4
2479 | #define SIZEOF_F77_DOUBLE_PRECISION 8
2480 | #define HAVE_FINT_IS_INT 1
2481 | #define F77_TRUE_VALUE_SET 1
2482 | #define F77_TRUE_VALUE 1
2483 | #define F77_FALSE_VALUE 0
2484 | #define SIZEOF_BOOL 1
2485 | #define SIZEOF_COMPLEX 8
2486 | #define SIZEOF_DOUBLECOMPLEX 16
2487 | #define SIZEOF_LONGDOUBLECOMPLEX 24
2488 | #define MPIR_CXX_COMPLEX_VALUE 0x4c000834
2489 | #define MPIR_CXX_DOUBLE_COMPLEX_VALUE 0x4c001035
2490 | #define MPIR_CXX_LONG_DOUBLE_COMPLEX_VALUE 0x4c001836
2491 | #define HAVE_CXX_COMPLEX 1
2492 | #define HAVE_ANY_INT64_T_ALIGNMENT 1
2493 | #define HAVE_ANY_INT32_T_ALIGNMENT 1
2494 | #define HAVE_GCC_AND_PENTIUM_ASM 1
2495 | #define USE_ATOMIC_UPDATES /**/
2496 | #define HAVE_STDLIB_H 1
2497 | #define HAVE_STDARG_H 1
2498 | #define HAVE_SYS_TYPES_H 1
2499 | #define HAVE_INTTYPES_H 1
2500 | #define HAVE_LIMITS_H 1
2501 | #define HAVE_STDDEF_H 1
2502 | #define HAVE_ERRNO_H 1
2503 | #define HAVE_SYS_SOCKET_H 1
2504 | #define HAVE_SYS_TIME_H 1
2505 | #define HAVE_UNISTD_H 1
2506 | #define HAVE_ENDIAN_H 1
2507 | #define HAVE_ASSERT_H 1
2508 | #define HAVE_SYS_UIO_H 1
2509 | #define HAVE_SETITIMER 1
2510 | #define HAVE_ALARM 1
2511 | #define HAVE_VSNPRINTF 1
2512 | #define HAVE_VSPRINTF 1
2513 | /* end confdefs.h.  */
2514 | #include <stdio.h>
2515 | #include <stdarg.h>
2516 | int vsnprintf(double, int, double, const char *);
2517 | int
2518 | main ()
2519 | {
2520 | int a=vsnprintf(1.0,27,1.0,"foo");
2521 |   ;
2522 |   return 0;
2523 | }
2524 configure:30523: result: no
2525 configure:30541: checking for strerror
2526 configure:30597: gcc -o conftest.exe  -O2   conftest.c  >&5
2527 configure:30604: $? = 0
2528 configure:30626: result: yes
2529 configure:30643: checking for snprintf
2530 configure:30699: gcc -o conftest.exe  -O2   conftest.c  >&5
2531 conftest.c:129: warning: conflicting types for built-in function 'snprintf'
2532 configure:30706: $? = 0
2533 configure:30728: result: yes
2534 configure:30741: checking whether snprintf needs a declaration
2535 configure:30769: gcc -c  -O2  conftest.c >&5
2536 conftest.c:108: error: conflicting types for 'snprintf'
2537 conftest.c:108: error: conflicting types for 'snprintf'
2538 configure:30776: $? = 1
2539 configure: failed program was:
2540 | /* confdefs.h.  */
2541 | #define PACKAGE_NAME ""
2542 | #define PACKAGE_TARNAME ""
2543 | #define PACKAGE_VERSION ""
2544 | #define PACKAGE_STRING ""
2545 | #define PACKAGE_BUGREPORT ""
2546 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
2547 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
2548 | #define USE_LOGGING MPID_LOGGING_NONE
2549 | #define HAVE_RUNTIME_THREADCHECK 1
2550 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
2551 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
2552 | #define HAVE_ROMIO 1
2553 | #define HAVE_LONG_LONG 1
2554 | #define F77_NAME_LOWER_2USCORE 1
2555 | #define STDCALL
2556 | #define HAVE_FORTRAN_BINDING 1
2557 | #define HAVE_CXX_EXCEPTIONS /**/
2558 | #define HAVE_NAMESPACES /**/
2559 | #define HAVE_NAMESPACE_STD /**/
2560 | #define HAVE_CXX_BINDING 1
2561 | #define HAVE_NAMEPUB_SERVICE 1
2562 | #define restrict __restrict
2563 | #define HAVE_GCC_ATTRIBUTE 1
2564 | #define HAVE_SYS_TYPES_H 1
2565 | #define HAVE_SYS_STAT_H 1
2566 | #define HAVE_STDLIB_H 1
2567 | #define HAVE_STRING_H 1
2568 | #define HAVE_MEMORY_H 1
2569 | #define HAVE_STRINGS_H 1
2570 | #define HAVE_INTTYPES_H 1
2571 | #define HAVE_STDINT_H 1
2572 | #define HAVE_UNISTD_H 1
2573 | #define WORDS_LITTLEENDIAN 1
2574 | #define HAVE_LONG_DOUBLE 1
2575 | #define HAVE_LONG_LONG_INT 1
2576 | #define HAVE_MAX_INTEGER_ALIGNMENT 8
2577 | #define HAVE_MAX_STRUCT_ALIGNMENT 8
2578 | #define HAVE_MAX_FP_ALIGNMENT 4
2579 | #define HAVE_MAX_DOUBLE_FP_ALIGNMENT 8
2580 | #define HAVE_MAX_LONG_DOUBLE_FP_ALIGNMENT 4
2581 | #define SIZEOF_CHAR 1
2582 | #define SIZEOF_UNSIGNED_CHAR 1
2583 | #define SIZEOF_SHORT 2
2584 | #define SIZEOF_UNSIGNED_SHORT 2
2585 | #define SIZEOF_INT 4
2586 | #define SIZEOF_UNSIGNED_INT 4
2587 | #define SIZEOF_LONG 4
2588 | #define SIZEOF_UNSIGNED_LONG 4
2589 | #define SIZEOF_LONG_LONG 8
2590 | #define SIZEOF_UNSIGNED_LONG_LONG 8
2591 | #define SIZEOF_FLOAT 4
2592 | #define SIZEOF_DOUBLE 8
2593 | #define SIZEOF_LONG_DOUBLE 12
2594 | #define SIZEOF_WCHAR_T 2
2595 | #define SIZEOF_VOID_P 4
2596 | #define HAVE_SYS_BITYPES_H 1
2597 | #define HAVE_INTTYPES_H 1
2598 | #define HAVE_INT16_T 1
2599 | #define HAVE_INT32_T 1
2600 | #define HAVE_INT64_T 1
2601 | #define MPIR_REAL4_CTYPE float
2602 | #define MPIR_REAL8_CTYPE double
2603 | #define MPIR_INTEGER1_CTYPE char
2604 | #define MPIR_INTEGER2_CTYPE short
2605 | #define MPIR_INTEGER4_CTYPE int
2606 | #define MPIR_INTEGER8_CTYPE long long
2607 | #define SIZEOF_F77_INTEGER 4
2608 | #define SIZEOF_F77_REAL 4
2609 | #define SIZEOF_F77_DOUBLE_PRECISION 8
2610 | #define HAVE_FINT_IS_INT 1
2611 | #define F77_TRUE_VALUE_SET 1
2612 | #define F77_TRUE_VALUE 1
2613 | #define F77_FALSE_VALUE 0
2614 | #define SIZEOF_BOOL 1
2615 | #define SIZEOF_COMPLEX 8
2616 | #define SIZEOF_DOUBLECOMPLEX 16
2617 | #define SIZEOF_LONGDOUBLECOMPLEX 24
2618 | #define MPIR_CXX_COMPLEX_VALUE 0x4c000834
2619 | #define MPIR_CXX_DOUBLE_COMPLEX_VALUE 0x4c001035
2620 | #define MPIR_CXX_LONG_DOUBLE_COMPLEX_VALUE 0x4c001836
2621 | #define HAVE_CXX_COMPLEX 1
2622 | #define HAVE_ANY_INT64_T_ALIGNMENT 1
2623 | #define HAVE_ANY_INT32_T_ALIGNMENT 1
2624 | #define HAVE_GCC_AND_PENTIUM_ASM 1
2625 | #define USE_ATOMIC_UPDATES /**/
2626 | #define HAVE_STDLIB_H 1
2627 | #define HAVE_STDARG_H 1
2628 | #define HAVE_SYS_TYPES_H 1
2629 | #define HAVE_INTTYPES_H 1
2630 | #define HAVE_LIMITS_H 1
2631 | #define HAVE_STDDEF_H 1
2632 | #define HAVE_ERRNO_H 1
2633 | #define HAVE_SYS_SOCKET_H 1
2634 | #define HAVE_SYS_TIME_H 1
2635 | #define HAVE_UNISTD_H 1
2636 | #define HAVE_ENDIAN_H 1
2637 | #define HAVE_ASSERT_H 1
2638 | #define HAVE_SYS_UIO_H 1
2639 | #define HAVE_SETITIMER 1
2640 | #define HAVE_ALARM 1
2641 | #define HAVE_VSNPRINTF 1
2642 | #define HAVE_VSPRINTF 1
2643 | #define HAVE_STRERROR 1
2644 | #define HAVE_SNPRINTF 1
2645 | /* end confdefs.h.  */
2646 | #include <stdio.h>
2647 | int snprintf(double, int, double, const char *);
2648 | int
2649 | main ()
2650 | {
2651 | int a=snprintf(1.0,27,1.0,"foo");
2652 |   ;
2653 |   return 0;
2654 | }
2655 configure:30791: result: no
2656 configure:30809: checking for va_copy
2657 configure:30845: gcc -o conftest.exe  -O2   conftest.c  >&5
2658 configure:30852: $? = 0
2659 configure:30872: result: yes
2660 configure:30960: checking for working alloca.h
2661 configure:30987: gcc -o conftest.exe  -O2   conftest.c  >&5
2662 configure:30994: $? = 0
2663 configure:31014: result: yes
2664 configure:31024: checking for alloca
2665 configure:31071: gcc -o conftest.exe  -O2   conftest.c  >&5
2666 configure:31078: $? = 0
2667 configure:31098: result: yes
2668 configure:31356: checking for strdup
2669 configure:31412: gcc -o conftest.exe  -O2   conftest.c  >&5
2670 conftest.c:133: warning: conflicting types for built-in function 'strdup'
2671 configure:31419: $? = 0
2672 configure:31441: result: yes
2673 configure:31455: checking whether strdup needs a declaration
2674 configure:31483: gcc -c  -O2  conftest.c >&5
2675 conftest.c:112: error: conflicting types for 'strdup'
2676 conftest.c:112: error: conflicting types for 'strdup'
2677 configure:31490: $? = 1
2678 configure: failed program was:
2679 | /* confdefs.h.  */
2680 | #define PACKAGE_NAME ""
2681 | #define PACKAGE_TARNAME ""
2682 | #define PACKAGE_VERSION ""
2683 | #define PACKAGE_STRING ""
2684 | #define PACKAGE_BUGREPORT ""
2685 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
2686 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
2687 | #define USE_LOGGING MPID_LOGGING_NONE
2688 | #define HAVE_RUNTIME_THREADCHECK 1
2689 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
2690 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
2691 | #define HAVE_ROMIO 1
2692 | #define HAVE_LONG_LONG 1
2693 | #define F77_NAME_LOWER_2USCORE 1
2694 | #define STDCALL
2695 | #define HAVE_FORTRAN_BINDING 1
2696 | #define HAVE_CXX_EXCEPTIONS /**/
2697 | #define HAVE_NAMESPACES /**/
2698 | #define HAVE_NAMESPACE_STD /**/
2699 | #define HAVE_CXX_BINDING 1
2700 | #define HAVE_NAMEPUB_SERVICE 1
2701 | #define restrict __restrict
2702 | #define HAVE_GCC_ATTRIBUTE 1
2703 | #define HAVE_SYS_TYPES_H 1
2704 | #define HAVE_SYS_STAT_H 1
2705 | #define HAVE_STDLIB_H 1
2706 | #define HAVE_STRING_H 1
2707 | #define HAVE_MEMORY_H 1
2708 | #define HAVE_STRINGS_H 1
2709 | #define HAVE_INTTYPES_H 1
2710 | #define HAVE_STDINT_H 1
2711 | #define HAVE_UNISTD_H 1
2712 | #define WORDS_LITTLEENDIAN 1
2713 | #define HAVE_LONG_DOUBLE 1
2714 | #define HAVE_LONG_LONG_INT 1
2715 | #define HAVE_MAX_INTEGER_ALIGNMENT 8
2716 | #define HAVE_MAX_STRUCT_ALIGNMENT 8
2717 | #define HAVE_MAX_FP_ALIGNMENT 4
2718 | #define HAVE_MAX_DOUBLE_FP_ALIGNMENT 8
2719 | #define HAVE_MAX_LONG_DOUBLE_FP_ALIGNMENT 4
2720 | #define SIZEOF_CHAR 1
2721 | #define SIZEOF_UNSIGNED_CHAR 1
2722 | #define SIZEOF_SHORT 2
2723 | #define SIZEOF_UNSIGNED_SHORT 2
2724 | #define SIZEOF_INT 4
2725 | #define SIZEOF_UNSIGNED_INT 4
2726 | #define SIZEOF_LONG 4
2727 | #define SIZEOF_UNSIGNED_LONG 4
2728 | #define SIZEOF_LONG_LONG 8
2729 | #define SIZEOF_UNSIGNED_LONG_LONG 8
2730 | #define SIZEOF_FLOAT 4
2731 | #define SIZEOF_DOUBLE 8
2732 | #define SIZEOF_LONG_DOUBLE 12
2733 | #define SIZEOF_WCHAR_T 2
2734 | #define SIZEOF_VOID_P 4
2735 | #define HAVE_SYS_BITYPES_H 1
2736 | #define HAVE_INTTYPES_H 1
2737 | #define HAVE_INT16_T 1
2738 | #define HAVE_INT32_T 1
2739 | #define HAVE_INT64_T 1
2740 | #define MPIR_REAL4_CTYPE float
2741 | #define MPIR_REAL8_CTYPE double
2742 | #define MPIR_INTEGER1_CTYPE char
2743 | #define MPIR_INTEGER2_CTYPE short
2744 | #define MPIR_INTEGER4_CTYPE int
2745 | #define MPIR_INTEGER8_CTYPE long long
2746 | #define SIZEOF_F77_INTEGER 4
2747 | #define SIZEOF_F77_REAL 4
2748 | #define SIZEOF_F77_DOUBLE_PRECISION 8
2749 | #define HAVE_FINT_IS_INT 1
2750 | #define F77_TRUE_VALUE_SET 1
2751 | #define F77_TRUE_VALUE 1
2752 | #define F77_FALSE_VALUE 0
2753 | #define SIZEOF_BOOL 1
2754 | #define SIZEOF_COMPLEX 8
2755 | #define SIZEOF_DOUBLECOMPLEX 16
2756 | #define SIZEOF_LONGDOUBLECOMPLEX 24
2757 | #define MPIR_CXX_COMPLEX_VALUE 0x4c000834
2758 | #define MPIR_CXX_DOUBLE_COMPLEX_VALUE 0x4c001035
2759 | #define MPIR_CXX_LONG_DOUBLE_COMPLEX_VALUE 0x4c001836
2760 | #define HAVE_CXX_COMPLEX 1
2761 | #define HAVE_ANY_INT64_T_ALIGNMENT 1
2762 | #define HAVE_ANY_INT32_T_ALIGNMENT 1
2763 | #define HAVE_GCC_AND_PENTIUM_ASM 1
2764 | #define USE_ATOMIC_UPDATES /**/
2765 | #define HAVE_STDLIB_H 1
2766 | #define HAVE_STDARG_H 1
2767 | #define HAVE_SYS_TYPES_H 1
2768 | #define HAVE_INTTYPES_H 1
2769 | #define HAVE_LIMITS_H 1
2770 | #define HAVE_STDDEF_H 1
2771 | #define HAVE_ERRNO_H 1
2772 | #define HAVE_SYS_SOCKET_H 1
2773 | #define HAVE_SYS_TIME_H 1
2774 | #define HAVE_UNISTD_H 1
2775 | #define HAVE_ENDIAN_H 1
2776 | #define HAVE_ASSERT_H 1
2777 | #define HAVE_SYS_UIO_H 1
2778 | #define HAVE_SETITIMER 1
2779 | #define HAVE_ALARM 1
2780 | #define HAVE_VSNPRINTF 1
2781 | #define HAVE_VSPRINTF 1
2782 | #define HAVE_STRERROR 1
2783 | #define HAVE_SNPRINTF 1
2784 | #define HAVE_VA_COPY 1
2785 | #define HAVE_ALLOCA_H 1
2786 | #define HAVE_ALLOCA 1
2787 | #define HAVE_STRDUP 1
2788 | /* end confdefs.h.  */
2789 | #include <string.h>
2790 | int strdup(double, int, double, const char *);
2791 | int
2792 | main ()
2793 | {
2794 | int a=strdup(1.0,27,1.0,"foo");
2795 |   ;
2796 |   return 0;
2797 | }
2798 configure:31505: result: no
2799 configure:31811: checking for clock_gettime
2800 configure:31867: gcc -o conftest.exe  -O2   conftest.c  >&5
2801 configure:31874: $? = 0
2802 configure:31896: result: yes
2803 configure:31811: checking for clock_getres
2804 configure:31867: gcc -o conftest.exe  -O2   conftest.c  >&5
2805 configure:31874: $? = 0
2806 configure:31896: result: yes
2807 configure:31811: checking for gethrtime
2808 configure:31867: gcc -o conftest.exe  -O2   conftest.c  >&5
2809 /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccIo1o22.o:conftest.c:(.text+0x19): undefined reference to `_gethrtime'
2810 collect2: ld returned 1 exit status
2811 configure:31874: $? = 1
2812 configure: failed program was:
2813 | /* confdefs.h.  */
2814 | #define PACKAGE_NAME ""
2815 | #define PACKAGE_TARNAME ""
2816 | #define PACKAGE_VERSION ""
2817 | #define PACKAGE_STRING ""
2818 | #define PACKAGE_BUGREPORT ""
2819 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
2820 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
2821 | #define USE_LOGGING MPID_LOGGING_NONE
2822 | #define HAVE_RUNTIME_THREADCHECK 1
2823 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
2824 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
2825 | #define HAVE_ROMIO 1
2826 | #define HAVE_LONG_LONG 1
2827 | #define F77_NAME_LOWER_2USCORE 1
2828 | #define STDCALL
2829 | #define HAVE_FORTRAN_BINDING 1
2830 | #define HAVE_CXX_EXCEPTIONS /**/
2831 | #define HAVE_NAMESPACES /**/
2832 | #define HAVE_NAMESPACE_STD /**/
2833 | #define HAVE_CXX_BINDING 1
2834 | #define HAVE_NAMEPUB_SERVICE 1
2835 | #define restrict __restrict
2836 | #define HAVE_GCC_ATTRIBUTE 1
2837 | #define HAVE_SYS_TYPES_H 1
2838 | #define HAVE_SYS_STAT_H 1
2839 | #define HAVE_STDLIB_H 1
2840 | #define HAVE_STRING_H 1
2841 | #define HAVE_MEMORY_H 1
2842 | #define HAVE_STRINGS_H 1
2843 | #define HAVE_INTTYPES_H 1
2844 | #define HAVE_STDINT_H 1
2845 | #define HAVE_UNISTD_H 1
2846 | #define WORDS_LITTLEENDIAN 1
2847 | #define HAVE_LONG_DOUBLE 1
2848 | #define HAVE_LONG_LONG_INT 1
2849 | #define HAVE_MAX_INTEGER_ALIGNMENT 8
2850 | #define HAVE_MAX_STRUCT_ALIGNMENT 8
2851 | #define HAVE_MAX_FP_ALIGNMENT 4
2852 | #define HAVE_MAX_DOUBLE_FP_ALIGNMENT 8
2853 | #define HAVE_MAX_LONG_DOUBLE_FP_ALIGNMENT 4
2854 | #define SIZEOF_CHAR 1
2855 | #define SIZEOF_UNSIGNED_CHAR 1
2856 | #define SIZEOF_SHORT 2
2857 | #define SIZEOF_UNSIGNED_SHORT 2
2858 | #define SIZEOF_INT 4
2859 | #define SIZEOF_UNSIGNED_INT 4
2860 | #define SIZEOF_LONG 4
2861 | #define SIZEOF_UNSIGNED_LONG 4
2862 | #define SIZEOF_LONG_LONG 8
2863 | #define SIZEOF_UNSIGNED_LONG_LONG 8
2864 | #define SIZEOF_FLOAT 4
2865 | #define SIZEOF_DOUBLE 8
2866 | #define SIZEOF_LONG_DOUBLE 12
2867 | #define SIZEOF_WCHAR_T 2
2868 | #define SIZEOF_VOID_P 4
2869 | #define HAVE_SYS_BITYPES_H 1
2870 | #define HAVE_INTTYPES_H 1
2871 | #define HAVE_INT16_T 1
2872 | #define HAVE_INT32_T 1
2873 | #define HAVE_INT64_T 1
2874 | #define MPIR_REAL4_CTYPE float
2875 | #define MPIR_REAL8_CTYPE double
2876 | #define MPIR_INTEGER1_CTYPE char
2877 | #define MPIR_INTEGER2_CTYPE short
2878 | #define MPIR_INTEGER4_CTYPE int
2879 | #define MPIR_INTEGER8_CTYPE long long
2880 | #define SIZEOF_F77_INTEGER 4
2881 | #define SIZEOF_F77_REAL 4
2882 | #define SIZEOF_F77_DOUBLE_PRECISION 8
2883 | #define HAVE_FINT_IS_INT 1
2884 | #define F77_TRUE_VALUE_SET 1
2885 | #define F77_TRUE_VALUE 1
2886 | #define F77_FALSE_VALUE 0
2887 | #define SIZEOF_BOOL 1
2888 | #define SIZEOF_COMPLEX 8
2889 | #define SIZEOF_DOUBLECOMPLEX 16
2890 | #define SIZEOF_LONGDOUBLECOMPLEX 24
2891 | #define MPIR_CXX_COMPLEX_VALUE 0x4c000834
2892 | #define MPIR_CXX_DOUBLE_COMPLEX_VALUE 0x4c001035
2893 | #define MPIR_CXX_LONG_DOUBLE_COMPLEX_VALUE 0x4c001836
2894 | #define HAVE_CXX_COMPLEX 1
2895 | #define HAVE_ANY_INT64_T_ALIGNMENT 1
2896 | #define HAVE_ANY_INT32_T_ALIGNMENT 1
2897 | #define HAVE_GCC_AND_PENTIUM_ASM 1
2898 | #define USE_ATOMIC_UPDATES /**/
2899 | #define HAVE_STDLIB_H 1
2900 | #define HAVE_STDARG_H 1
2901 | #define HAVE_SYS_TYPES_H 1
2902 | #define HAVE_INTTYPES_H 1
2903 | #define HAVE_LIMITS_H 1
2904 | #define HAVE_STDDEF_H 1
2905 | #define HAVE_ERRNO_H 1
2906 | #define HAVE_SYS_SOCKET_H 1
2907 | #define HAVE_SYS_TIME_H 1
2908 | #define HAVE_UNISTD_H 1
2909 | #define HAVE_ENDIAN_H 1
2910 | #define HAVE_ASSERT_H 1
2911 | #define HAVE_SYS_UIO_H 1
2912 | #define HAVE_SETITIMER 1
2913 | #define HAVE_ALARM 1
2914 | #define HAVE_VSNPRINTF 1
2915 | #define HAVE_VSPRINTF 1
2916 | #define HAVE_STRERROR 1
2917 | #define HAVE_SNPRINTF 1
2918 | #define HAVE_VA_COPY 1
2919 | #define HAVE_ALLOCA_H 1
2920 | #define HAVE_ALLOCA 1
2921 | #define HAVE_STRDUP 1
2922 | #define HAVE_CLOCK_GETTIME 1
2923 | #define HAVE_CLOCK_GETRES 1
2924 | /* end confdefs.h.  */
2925 | /* Define gethrtime to an innocuous variant, in case <limits.h> declares gethrtime.
2926 |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
2927 | #define gethrtime innocuous_gethrtime
2928 |
2929 | /* System header to define __stub macros and hopefully few prototypes,
2930 |     which can conflict with char gethrtime (); below.
2931 |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
2932 |     <limits.h> exists even on freestanding compilers.  */
2933 |
2934 | #ifdef __STDC__
2935 | # include <limits.h>
2936 | #else
2937 | # include <assert.h>
2938 | #endif
2939 |
2940 | #undef gethrtime
2941 |
2942 | /* Override any GCC internal prototype to avoid an error.
2943 |    Use char because int might match the return type of a GCC
2944 |    builtin and then its argument prototype would still apply.  */
2945 | #ifdef __cplusplus
2946 | extern "C"
2947 | #endif
2948 | char gethrtime ();
2949 | /* The GNU C library defines this for functions which it implements
2950 |     to always fail with ENOSYS.  Some functions are actually named
2951 |     something starting with __ and the normal name is an alias.  */
2952 | #if defined __stub_gethrtime || defined __stub___gethrtime
2953 | choke me
2954 | #endif
2955 |
2956 | int
2957 | main ()
2958 | {
2959 | return gethrtime ();
2960 |   ;
2961 |   return 0;
2962 | }
2963 configure:31896: result: no
2964 configure:31811: checking for gettimeofday
2965 configure:31867: gcc -o conftest.exe  -O2   conftest.c  >&5
2966 configure:31874: $? = 0
2967 configure:31896: result: yes
2968 configure:32092: checking for clock_gettime
2969 configure:32175: result: yes
2970 configure:32277: checking for clock_getres
2971 configure:32360: result: yes
2972 configure:32376: checking whether struct timespec is defined in time.h
2973 configure:32405: gcc -c  -O2  conftest.c >&5
2974 configure:32412: $? = 0
2975 configure:32428: result: yes
2976 configure:32501: checking for CLOCK_REALTIME defined in time.h
2977 configure:32530: gcc -c  -O2  conftest.c >&5
2978 configure:32537: $? = 0
2979 configure:32552: result: yes
2980 configure:33243: checking for pthread.h
2981 configure:33264:   conftest.c
2982 [?1034h]0;~
2983 Cornelius@CorneliusVAIO ~
2984 $ logout
2985 [?1034h]0;~
2986 Cornelius@CorneliusVAIO ~
2987 $ logout
2988 configure:33271: $? = 0
2989 configure:33318: result: yes
2990 configure:33334: checking for pthread_yield
2991 configure:33390: gcc -o conftest.exe  -O2   conftest.c  >&5
2992 /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccg2rfhN.o:conftest.c:(.text+0x19): undefined reference to `_pthread_yield'
2993 collect2: ld returned 1 exit status
2994 configure:33397: $? = 1
2995 configure: failed program was:
2996 | /* confdefs.h.  */
2997 | #define PACKAGE_NAME ""
2998 | #define PACKAGE_TARNAME ""
2999 | #define PACKAGE_VERSION ""
3000 | #define PACKAGE_STRING ""
3001 | #define PACKAGE_BUGREPORT ""
3002 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
3003 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
3004 | #define USE_LOGGING MPID_LOGGING_NONE
3005 | #define HAVE_RUNTIME_THREADCHECK 1
3006 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
3007 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
3008 | #define HAVE_ROMIO 1
3009 | #define HAVE_LONG_LONG 1
3010 | #define F77_NAME_LOWER_2USCORE 1
3011 | #define STDCALL
3012 | #define HAVE_FORTRAN_BINDING 1
3013 | #define HAVE_CXX_EXCEPTIONS /**/
3014 | #define HAVE_NAMESPACES /**/
3015 | #define HAVE_NAMESPACE_STD /**/
3016 | #define HAVE_CXX_BINDING 1
3017 | #define HAVE_NAMEPUB_SERVICE 1
3018 | #define restrict __restrict
3019 | #define HAVE_GCC_ATTRIBUTE 1
3020 | #define HAVE_SYS_TYPES_H 1
3021 | #define HAVE_SYS_STAT_H 1
3022 | #define HAVE_STDLIB_H 1
3023 | #define HAVE_STRING_H 1
3024 | #define HAVE_MEMORY_H 1
3025 | #define HAVE_STRINGS_H 1
3026 | #define HAVE_INTTYPES_H 1
3027 | #define HAVE_STDINT_H 1
3028 | #define HAVE_UNISTD_H 1
3029 | #define WORDS_LITTLEENDIAN 1
3030 | #define HAVE_LONG_DOUBLE 1
3031 | #define HAVE_LONG_LONG_INT 1
3032 | #define HAVE_MAX_INTEGER_ALIGNMENT 8
3033 | #define HAVE_MAX_STRUCT_ALIGNMENT 8
3034 | #define HAVE_MAX_FP_ALIGNMENT 4
3035 | #define HAVE_MAX_DOUBLE_FP_ALIGNMENT 8
3036 | #define HAVE_MAX_LONG_DOUBLE_FP_ALIGNMENT 4
3037 | #define SIZEOF_CHAR 1
3038 | #define SIZEOF_UNSIGNED_CHAR 1
3039 | #define SIZEOF_SHORT 2
3040 | #define SIZEOF_UNSIGNED_SHORT 2
3041 | #define SIZEOF_INT 4
3042 | #define SIZEOF_UNSIGNED_INT 4
3043 | #define SIZEOF_LONG 4
3044 | #define SIZEOF_UNSIGNED_LONG 4
3045 | #define SIZEOF_LONG_LONG 8
3046 | #define SIZEOF_UNSIGNED_LONG_LONG 8
3047 | #define SIZEOF_FLOAT 4
3048 | #define SIZEOF_DOUBLE 8
3049 | #define SIZEOF_LONG_DOUBLE 12
3050 | #define SIZEOF_WCHAR_T 2
3051 | #define SIZEOF_VOID_P 4
3052 | #define HAVE_SYS_BITYPES_H 1
3053 | #define HAVE_INTTYPES_H 1
3054 | #define HAVE_INT16_T 1
3055 | #define HAVE_INT32_T 1
3056 | #define HAVE_INT64_T 1
3057 | #define MPIR_REAL4_CTYPE float
3058 | #define MPIR_REAL8_CTYPE double
3059 | #define MPIR_INTEGER1_CTYPE char
3060 | #define MPIR_INTEGER2_CTYPE short
3061 | #define MPIR_INTEGER4_CTYPE int
3062 | #define MPIR_INTEGER8_CTYPE long long
3063 | #define SIZEOF_F77_INTEGER 4
3064 | #define SIZEOF_F77_REAL 4
3065 | #define SIZEOF_F77_DOUBLE_PRECISION 8
3066 | #define HAVE_FINT_IS_INT 1
3067 | #define F77_TRUE_VALUE_SET 1
3068 | #define F77_TRUE_VALUE 1
3069 | #define F77_FALSE_VALUE 0
3070 | #define SIZEOF_BOOL 1
3071 | #define SIZEOF_COMPLEX 8
3072 | #define SIZEOF_DOUBLECOMPLEX 16
3073 | #define SIZEOF_LONGDOUBLECOMPLEX 24
3074 | #define MPIR_CXX_COMPLEX_VALUE 0x4c000834
3075 | #define MPIR_CXX_DOUBLE_COMPLEX_VALUE 0x4c001035
3076 | #define MPIR_CXX_LONG_DOUBLE_COMPLEX_VALUE 0x4c001836
3077 | #define HAVE_CXX_COMPLEX 1
3078 | #define HAVE_ANY_INT64_T_ALIGNMENT 1
3079 | #define HAVE_ANY_INT32_T_ALIGNMENT 1
3080 | #define HAVE_GCC_AND_PENTIUM_ASM 1
3081 | #define USE_ATOMIC_UPDATES /**/
3082 | #define HAVE_STDLIB_H 1
3083 | #define HAVE_STDARG_H 1
3084 | #define HAVE_SYS_TYPES_H 1
3085 | #define HAVE_INTTYPES_H 1
3086 | #define HAVE_LIMITS_H 1
3087 | #define HAVE_STDDEF_H 1
3088 | #define HAVE_ERRNO_H 1
3089 | #define HAVE_SYS_SOCKET_H 1
3090 | #define HAVE_SYS_TIME_H 1
3091 | #define HAVE_UNISTD_H 1
3092 | #define HAVE_ENDIAN_H 1
3093 | #define HAVE_ASSERT_H 1
3094 | #define HAVE_SYS_UIO_H 1
3095 | #define HAVE_SETITIMER 1
3096 | #define HAVE_ALARM 1
3097 | #define HAVE_VSNPRINTF 1
3098 | #define HAVE_VSPRINTF 1
3099 | #define HAVE_STRERROR 1
3100 | #define HAVE_SNPRINTF 1
3101 | #define HAVE_VA_COPY 1
3102 | #define HAVE_ALLOCA_H 1
3103 | #define HAVE_ALLOCA 1
3104 | #define HAVE_STRDUP 1
3105 | #define HAVE_CLOCK_GETTIME 1
3106 | #define HAVE_CLOCK_GETRES 1
3107 | #define HAVE_GETTIMEOFDAY 1
3108 | #define SIZEOF_INT_IS_AINT 1
3109 | #define MPIR_Pint int
3110 | #define MPIR_Upint unsigned int
3111 | #define MPIU_SIZE_T unsigned int
3112 | #define HAVE_PTHREAD_H 1
3113 | /* end confdefs.h.  */
3114 | /* Define pthread_yield to an innocuous variant, in case <limits.h> declares pthread_yield.
3115 |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
3116 | #define pthread_yield innocuous_pthread_yield
3117 |
3118 | /* System header to define __stub macros and hopefully few prototypes,
3119 |     which can conflict with char pthread_yield (); below.
3120 |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
3121 |     <limits.h> exists even on freestanding compilers.  */
3122 |
3123 | #ifdef __STDC__
3124 | # include <limits.h>
3125 | #else
3126 | # include <assert.h>
3127 | #endif
3128 |
3129 | #undef pthread_yield
3130 |
3131 | /* Override any GCC internal prototype to avoid an error.
3132 |    Use char because int might match the return type of a GCC
3133 |    builtin and then its argument prototype would still apply.  */
3134 | #ifdef __cplusplus
3135 | extern "C"
3136 | #endif
3137 | char pthread_yield ();
3138 | /* The GNU C library defines this for functions which it implements
3139 |     to always fail with ENOSYS.  Some functions are actually named
3140 |     something starting with __ and the normal name is an alias.  */
3141 | #if defined __stub_pthread_yield || defined __stub___pthread_yield
3142 | choke me
3143 | #endif
3144 |
3145 | int
3146 | main ()
3147 | {
3148 | return pthread_yield ();
3149 |   ;
3150 |   return 0;
3151 | }
3152 configure:33419: result: no
3153 configure:33432: checking for library containing pthread_key_create
3154 configure:33473: gcc -o conftest.exe  -O2   conftest.c  >&5
3155 configure:33480: $? = 0
3156 configure:33511: result: none required
3157 configure:33530: checking whether pthread routines without explicit lib are broken
3158 configure:33556: gcc -o conftest.exe  -O2   conftest.c  >&5
3159 configure:33560: $? = 0
3160 configure:33566: ./conftest.exe
3161 configure:33570: $? = 0
3162 configure:33586: result: no
3163 configure:33668: checking for pthread_cleanup_push
3164 configure:33724: gcc -o conftest.exe  -O2   conftest.c  >&5
3165 /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/cc0nGafB.o:conftest.c:(.text+0x19): undefined reference to `_pthread_cleanup_push'
3166 collect2: ld returned 1 exit status
3167 configure:33731: $? = 1
3168 configure: failed program was:
3169 | /* confdefs.h.  */
3170 | #define PACKAGE_NAME ""
3171 | #define PACKAGE_TARNAME ""
3172 | #define PACKAGE_VERSION ""
3173 | #define PACKAGE_STRING ""
3174 | #define PACKAGE_BUGREPORT ""
3175 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
3176 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
3177 | #define USE_LOGGING MPID_LOGGING_NONE
3178 | #define HAVE_RUNTIME_THREADCHECK 1
3179 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
3180 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
3181 | #define HAVE_ROMIO 1
3182 | #define HAVE_LONG_LONG 1
3183 | #define F77_NAME_LOWER_2USCORE 1
3184 | #define STDCALL
3185 | #define HAVE_FORTRAN_BINDING 1
3186 | #define HAVE_CXX_EXCEPTIONS /**/
3187 | #define HAVE_NAMESPACES /**/
3188 | #define HAVE_NAMESPACE_STD /**/
3189 | #define HAVE_CXX_BINDING 1
3190 | #define HAVE_NAMEPUB_SERVICE 1
3191 | #define restrict __restrict
3192 | #define HAVE_GCC_ATTRIBUTE 1
3193 | #define HAVE_SYS_TYPES_H 1
3194 | #define HAVE_SYS_STAT_H 1
3195 | #define HAVE_STDLIB_H 1
3196 | #define HAVE_STRING_H 1
3197 | #define HAVE_MEMORY_H 1
3198 | #define HAVE_STRINGS_H 1
3199 | #define HAVE_INTTYPES_H 1
3200 | #define HAVE_STDINT_H 1
3201 | #define HAVE_UNISTD_H 1
3202 | #define WORDS_LITTLEENDIAN 1
3203 | #define HAVE_LONG_DOUBLE 1
3204 | #define HAVE_LONG_LONG_INT 1
3205 | #define HAVE_MAX_INTEGER_ALIGNMENT 8
3206 | #define HAVE_MAX_STRUCT_ALIGNMENT 8
3207 | #define HAVE_MAX_FP_ALIGNMENT 4
3208 | #define HAVE_MAX_DOUBLE_FP_ALIGNMENT 8
3209 | #define HAVE_MAX_LONG_DOUBLE_FP_ALIGNMENT 4
3210 | #define SIZEOF_CHAR 1
3211 | #define SIZEOF_UNSIGNED_CHAR 1
3212 | #define SIZEOF_SHORT 2
3213 | #define SIZEOF_UNSIGNED_SHORT 2
3214 | #define SIZEOF_INT 4
3215 | #define SIZEOF_UNSIGNED_INT 4
3216 | #define SIZEOF_LONG 4
3217 | #define SIZEOF_UNSIGNED_LONG 4
3218 | #define SIZEOF_LONG_LONG 8
3219 | #define SIZEOF_UNSIGNED_LONG_LONG 8
3220 | #define SIZEOF_FLOAT 4
3221 | #define SIZEOF_DOUBLE 8
3222 | #define SIZEOF_LONG_DOUBLE 12
3223 | #define SIZEOF_WCHAR_T 2
3224 | #define SIZEOF_VOID_P 4
3225 | #define HAVE_SYS_BITYPES_H 1
3226 | #define HAVE_INTTYPES_H 1
3227 | #define HAVE_INT16_T 1
3228 | #define HAVE_INT32_T 1
3229 | #define HAVE_INT64_T 1
3230 | #define MPIR_REAL4_CTYPE float
3231 | #define MPIR_REAL8_CTYPE double
3232 | #define MPIR_INTEGER1_CTYPE char
3233 | #define MPIR_INTEGER2_CTYPE short
3234 | #define MPIR_INTEGER4_CTYPE int
3235 | #define MPIR_INTEGER8_CTYPE long long
3236 | #define SIZEOF_F77_INTEGER 4
3237 | #define SIZEOF_F77_REAL 4
3238 | #define SIZEOF_F77_DOUBLE_PRECISION 8
3239 | #define HAVE_FINT_IS_INT 1
3240 | #define F77_TRUE_VALUE_SET 1
3241 | #define F77_TRUE_VALUE 1
3242 | #define F77_FALSE_VALUE 0
3243 | #define SIZEOF_BOOL 1
3244 | #define SIZEOF_COMPLEX 8
3245 | #define SIZEOF_DOUBLECOMPLEX 16
3246 | #define SIZEOF_LONGDOUBLECOMPLEX 24
3247 | #define MPIR_CXX_COMPLEX_VALUE 0x4c000834
3248 | #define MPIR_CXX_DOUBLE_COMPLEX_VALUE 0x4c001035
3249 | #define MPIR_CXX_LONG_DOUBLE_COMPLEX_VALUE 0x4c001836
3250 | #define HAVE_CXX_COMPLEX 1
3251 | #define HAVE_ANY_INT64_T_ALIGNMENT 1
3252 | #define HAVE_ANY_INT32_T_ALIGNMENT 1
3253 | #define HAVE_GCC_AND_PENTIUM_ASM 1
3254 | #define USE_ATOMIC_UPDATES /**/
3255 | #define HAVE_STDLIB_H 1
3256 | #define HAVE_STDARG_H 1
3257 | #define HAVE_SYS_TYPES_H 1
3258 | #define HAVE_INTTYPES_H 1
3259 | #define HAVE_LIMITS_H 1
3260 | #define HAVE_STDDEF_H 1
3261 | #define HAVE_ERRNO_H 1
3262 | #define HAVE_SYS_SOCKET_H 1
3263 | #define HAVE_SYS_TIME_H 1
3264 | #define HAVE_UNISTD_H 1
3265 | #define HAVE_ENDIAN_H 1
3266 | #define HAVE_ASSERT_H 1
3267 | #define HAVE_SYS_UIO_H 1
3268 | #define HAVE_SETITIMER 1
3269 | #define HAVE_ALARM 1
3270 | #define HAVE_VSNPRINTF 1
3271 | #define HAVE_VSPRINTF 1
3272 | #define HAVE_STRERROR 1
3273 | #define HAVE_SNPRINTF 1
3274 | #define HAVE_VA_COPY 1
3275 | #define HAVE_ALLOCA_H 1
3276 | #define HAVE_ALLOCA 1
3277 | #define HAVE_STRDUP 1
3278 | #define HAVE_CLOCK_GETTIME 1
3279 | #define HAVE_CLOCK_GETRES 1
3280 | #define HAVE_GETTIMEOFDAY 1
3281 | #define SIZEOF_INT_IS_AINT 1
3282 | #define MPIR_Pint int
3283 | #define MPIR_Upint unsigned int
3284 | #define MPIU_SIZE_T unsigned int
3285 | #define HAVE_PTHREAD_H 1
3286 | /* end confdefs.h.  */
3287 | /* Define pthread_cleanup_push to an innocuous variant, in case <limits.h> declares pthread_cleanup_push.
3288 |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
3289 | #define pthread_cleanup_push innocuous_pthread_cleanup_push
3290 |
3291 | /* System header to define __stub macros and hopefully few prototypes,
3292 |     which can conflict with char pthread_cleanup_push (); below.
3293 |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
3294 |     <limits.h> exists even on freestanding compilers.  */
3295 |
3296 | #ifdef __STDC__
3297 | # include <limits.h>
3298 | #else
3299 | # include <assert.h>
3300 | #endif
3301 |
3302 | #undef pthread_cleanup_push
3303 |
3304 | /* Override any GCC internal prototype to avoid an error.
3305 |    Use char because int might match the return type of a GCC
3306 |    builtin and then its argument prototype would still apply.  */
3307 | #ifdef __cplusplus
3308 | extern "C"
3309 | #endif
3310 | char pthread_cleanup_push ();
3311 | /* The GNU C library defines this for functions which it implements
3312 |     to always fail with ENOSYS.  Some functions are actually named
3313 |     something starting with __ and the normal name is an alias.  */
3314 | #if defined __stub_pthread_cleanup_push || defined __stub___pthread_cleanup_push
3315 | choke me
3316 | #endif
3317 |
3318 | int
3319 | main ()
3320 | {
3321 | return pthread_cleanup_push ();
3322 |   ;
3323 |   return 0;
3324 | }
3325 configure:33753: result: no
3326 configure:33765: checking whether pthread_cleanup_push is available (may be a macro in pthread.h)
3327 configure:33794: gcc -o conftest.exe  -O2   conftest.c  >&5
3328 conftest.c: In function `main':
3329 conftest.c:128: error: parse error at end of input
3330 configure:33801: $? = 1
3331 configure: failed program was:
3332 | /* confdefs.h.  */
3333 | #define PACKAGE_NAME ""
3334 | #define PACKAGE_TARNAME ""
3335 | #define PACKAGE_VERSION ""
3336 | #define PACKAGE_STRING ""
3337 | #define PACKAGE_BUGREPORT ""
3338 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
3339 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
3340 | #define USE_LOGGING MPID_LOGGING_NONE
3341 | #define HAVE_RUNTIME_THREADCHECK 1
3342 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
3343 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
3344 | #define HAVE_ROMIO 1
3345 | #define HAVE_LONG_LONG 1
3346 | #define F77_NAME_LOWER_2USCORE 1
3347 | #define STDCALL
3348 | #define HAVE_FORTRAN_BINDING 1
3349 | #define HAVE_CXX_EXCEPTIONS /**/
3350 | #define HAVE_NAMESPACES /**/
3351 | #define HAVE_NAMESPACE_STD /**/
3352 | #define HAVE_CXX_BINDING 1
3353 | #define HAVE_NAMEPUB_SERVICE 1
3354 | #define restrict __restrict
3355 | #define HAVE_GCC_ATTRIBUTE 1
3356 | #define HAVE_SYS_TYPES_H 1
3357 | #define HAVE_SYS_STAT_H 1
3358 | #define HAVE_STDLIB_H 1
3359 | #define HAVE_STRING_H 1
3360 | #define HAVE_MEMORY_H 1
3361 | #define HAVE_STRINGS_H 1
3362 | #define HAVE_INTTYPES_H 1
3363 | #define HAVE_STDINT_H 1
3364 | #define HAVE_UNISTD_H 1
3365 | #define WORDS_LITTLEENDIAN 1
3366 | #define HAVE_LONG_DOUBLE 1
3367 | #define HAVE_LONG_LONG_INT 1
3368 | #define HAVE_MAX_INTEGER_ALIGNMENT 8
3369 | #define HAVE_MAX_STRUCT_ALIGNMENT 8
3370 | #define HAVE_MAX_FP_ALIGNMENT 4
3371 | #define HAVE_MAX_DOUBLE_FP_ALIGNMENT 8
3372 | #define HAVE_MAX_LONG_DOUBLE_FP_ALIGNMENT 4
3373 | #define SIZEOF_CHAR 1
3374 | #define SIZEOF_UNSIGNED_CHAR 1
3375 | #define SIZEOF_SHORT 2
3376 | #define SIZEOF_UNSIGNED_SHORT 2
3377 | #define SIZEOF_INT 4
3378 | #define SIZEOF_UNSIGNED_INT 4
3379 | #define SIZEOF_LONG 4
3380 | #define SIZEOF_UNSIGNED_LONG 4
3381 | #define SIZEOF_LONG_LONG 8
3382 | #define SIZEOF_UNSIGNED_LONG_LONG 8
3383 | #define SIZEOF_FLOAT 4
3384 | #define SIZEOF_DOUBLE 8
3385 | #define SIZEOF_LONG_DOUBLE 12
3386 | #define SIZEOF_WCHAR_T 2
3387 | #define SIZEOF_VOID_P 4
3388 | #define HAVE_SYS_BITYPES_H 1
3389 | #define HAVE_INTTYPES_H 1
3390 | #define HAVE_INT16_T 1
3391 | #define HAVE_INT32_T 1
3392 | #define HAVE_INT64_T 1
3393 | #define MPIR_REAL4_CTYPE float
3394 | #define MPIR_REAL8_CTYPE double
3395 | #define MPIR_INTEGER1_CTYPE char
3396 | #define MPIR_INTEGER2_CTYPE short
3397 | #define MPIR_INTEGER4_CTYPE int
3398 | #define MPIR_INTEGER8_CTYPE long long
3399 | #define SIZEOF_F77_INTEGER 4
3400 | #define SIZEOF_F77_REAL 4
3401 | #define SIZEOF_F77_DOUBLE_PRECISION 8
3402 | #define HAVE_FINT_IS_INT 1
3403 | #define F77_TRUE_VALUE_SET 1
3404 | #define F77_TRUE_VALUE 1
3405 | #define F77_FALSE_VALUE 0
3406 | #define SIZEOF_BOOL 1
3407 | #define SIZEOF_COMPLEX 8
3408 | #define SIZEOF_DOUBLECOMPLEX 16
3409 | #define SIZEOF_LONGDOUBLECOMPLEX 24
3410 | #define MPIR_CXX_COMPLEX_VALUE 0x4c000834
3411 | #define MPIR_CXX_DOUBLE_COMPLEX_VALUE 0x4c001035
3412 | #define MPIR_CXX_LONG_DOUBLE_COMPLEX_VALUE 0x4c001836
3413 | #define HAVE_CXX_COMPLEX 1
3414 | #define HAVE_ANY_INT64_T_ALIGNMENT 1
3415 | #define HAVE_ANY_INT32_T_ALIGNMENT 1
3416 | #define HAVE_GCC_AND_PENTIUM_ASM 1
3417 | #define USE_ATOMIC_UPDATES /**/
3418 | #define HAVE_STDLIB_H 1
3419 | #define HAVE_STDARG_H 1
3420 | #define HAVE_SYS_TYPES_H 1
3421 | #define HAVE_INTTYPES_H 1
3422 | #define HAVE_LIMITS_H 1
3423 | #define HAVE_STDDEF_H 1
3424 | #define HAVE_ERRNO_H 1
3425 | #define HAVE_SYS_SOCKET_H 1
3426 | #define HAVE_SYS_TIME_H 1
3427 | #define HAVE_UNISTD_H 1
3428 | #define HAVE_ENDIAN_H 1
3429 | #define HAVE_ASSERT_H 1
3430 | #define HAVE_SYS_UIO_H 1
3431 | #define HAVE_SETITIMER 1
3432 | #define HAVE_ALARM 1
3433 | #define HAVE_VSNPRINTF 1
3434 | #define HAVE_VSPRINTF 1
3435 | #define HAVE_STRERROR 1
3436 | #define HAVE_SNPRINTF 1
3437 | #define HAVE_VA_COPY 1
3438 | #define HAVE_ALLOCA_H 1
3439 | #define HAVE_ALLOCA 1
3440 | #define HAVE_STRDUP 1
3441 | #define HAVE_CLOCK_GETTIME 1
3442 | #define HAVE_CLOCK_GETRES 1
3443 | #define HAVE_GETTIMEOFDAY 1
3444 | #define SIZEOF_INT_IS_AINT 1
3445 | #define MPIR_Pint int
3446 | #define MPIR_Upint unsigned int
3447 | #define MPIU_SIZE_T unsigned int
3448 | #define HAVE_PTHREAD_H 1
3449 | /* end confdefs.h.  */
3450 |
3451 | #include <pthread.h>
3452 | void f1(void *a) { return; }
3453 | int
3454 | main ()
3455 | {
3456 | pthread_cleanup_push( f1, (void *)0 );
3457 |   ;
3458 |   return 0;
3459 | }
3460 configure:33821: result: no
3461 configure:34146: checking for sched_yield
3462 configure:34202: gcc -o conftest.exe  -O2   conftest.c  >&5
3463 configure:34209: $? = 0
3464 configure:34231: result: yes
3465 configure:34146: checking for yield
3466 configure:34202: gcc -o conftest.exe  -O2   conftest.c  >&5
3467 /cygdrive/c/DOCUME~1/CORNEL~1/LOCALS~1/Temp/ccCeiJ3M.o:conftest.c:(.text+0x19): undefined reference to `_yield'
3468 collect2: ld returned 1 exit status
3469 configure:34209: $? = 1
3470 configure: failed program was:
3471 | /* confdefs.h.  */
3472 | #define PACKAGE_NAME ""
3473 | #define PACKAGE_TARNAME ""
3474 | #define PACKAGE_VERSION ""
3475 | #define PACKAGE_STRING ""
3476 | #define PACKAGE_BUGREPORT ""
3477 | #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
3478 | #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
3479 | #define USE_LOGGING MPID_LOGGING_NONE
3480 | #define HAVE_RUNTIME_THREADCHECK 1
3481 | #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
3482 | #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
3483 | #define HAVE_ROMIO 1
3484 | #define HAVE_LONG_LONG 1
3485 | #define F77_NAME_LOWER_2USCORE 1
3486 | #define STDCALL
3487 | #define HAVE_FORTRAN_BINDING 1
3488 | #define HAVE_CXX_EXCEPTIONS /**/
3489 | #define HAVE_NAMESPACES /**/
3490 | #define HAVE_NAMESPACE_STD /**/
3491 | #define HAVE_CXX_BINDING 1
3492 | #define HAVE_NAMEPUB_SERVICE 1
3493 | #define restrict __restrict
3494 | #define HAVE_GCC_ATTRIBUTE 1
3495 | #define HAVE_SYS_TYPES_H 1
3496 | #define HAVE_SYS_STAT_H 1
3497 | #define HAVE_STDLIB_H 1
3498 | #define HAVE_STRING_H 1
3499 | #define HAVE_MEMORY_H 1
3500 | #define HAVE_STRINGS_H 1
3501 | #define HAVE_INTTYPES_H 1
3502 | #define HAVE_STDINT_H 1
3503 | #define HAVE_UNISTD_H 1
3504 | #define WORDS_LITTLEENDIAN 1
3505 | #define HAVE_LONG_DOUBLE 1
3506 | #define HAVE_LONG_LONG_INT 1
3507 | #define HAVE_MAX_INTEGER_ALIGNMENT 8
3508 | #define HAVE_MAX_STRUCT_ALIGNMENT 8
3509 | #define HAVE_MAX_FP_ALIGNMENT 4
3510 | #define HAVE_MAX_DOUBLE_FP_ALIGNMENT 8
3511 | #define HAVE_MAX_LONG_DOUBLE_FP_ALIGNMENT 4
3512 | #define SIZEOF_CHAR 1
3513 | #define SIZEOF_UNSIGNED_CHAR 1
3514 | #define SIZEOF_SHORT 2
3515 | #define SIZEOF_UNSIGNED_SHORT 2
3516 | #define SIZEOF_INT 4
3517 | #define SIZEOF_UNSIGNED_INT 4
3518 | #define SIZEOF_LONG 4
3519 | #define SIZEOF_UNSIGNED_LONG 4
3520 | #define SIZEOF_LONG_LONG 8
3521 | #define SIZEOF_UNSIGNED_LONG_LONG 8
3522 | #define SIZEOF_FLOAT 4
3523 | #define SIZEOF_DOUBLE 8
3524 | #define SIZEOF_LONG_DOUBLE 12
3525 | #define SIZEOF_WCHAR_T 2
3526 | #define SIZEOF_VOID_P 4
3527 | #define HAVE_SYS_BITYPES_H 1
3528 | #define HAVE_INTTYPES_H 1
3529 | #define HAVE_INT16_T 1
3530 | #define HAVE_INT32_T 1
3531 | #define HAVE_INT64_T 1
3532 | #define MPIR_REAL4_CTYPE float
3533 | #define MPIR_REAL8_CTYPE double
3534 | #define MPIR_INTEGER1_CTYPE char
3535 | #define MPIR_INTEGER2_CTYPE short
3536 | #define MPIR_INTEGER4_CTYPE int
3537 | #define MPIR_INTEGER8_CTYPE long long
3538 | #define SIZEOF_F77_INTEGER 4
3539 | #define SIZEOF_F77_REAL 4
3540 | #define SIZEOF_F77_DOUBLE_PRECISION 8
3541 | #define HAVE_FINT_IS_INT 1
3542 | #define F77_TRUE_VALUE_SET 1
3543 | #define F77_TRUE_VALUE 1
3544 | #define F77_FALSE_VALUE 0
3545 | #define SIZEOF_BOOL 1
3546 | #define SIZEOF_COMPLEX 8
3547 | #define SIZEOF_DOUBLECOMPLEX 16
3548 | #define SIZEOF_LONGDOUBLECOMPLEX 24
3549 | #define MPIR_CXX_COMPLEX_VALUE 0x4c000834
3550 | #define MPIR_CXX_DOUBLE_COMPLEX_VALUE 0x4c001035
3551 | #define MPIR_CXX_LONG_DOUBLE_COMPLEX_VALUE 0x4c001836
3552 | #define HAVE_CXX_COMPLEX 1
3553 | #define HAVE_ANY_INT64_T_ALIGNMENT 1
3554 | #define HAVE_ANY_INT32_T_ALIGNMENT 1
3555 | #define HAVE_GCC_AND_PENTIUM_ASM 1
3556 | #define USE_ATOMIC_UPDATES /**/
3557 | #define HAVE_STDLIB_H 1
3558 | #define HAVE_STDARG_H 1
3559 | #define HAVE_SYS_TYPES_H 1
3560 | #define HAVE_INTTYPES_H 1
3561 | #define HAVE_LIMITS_H 1
3562 | #define HAVE_STDDEF_H 1
3563 | #define HAVE_ERRNO_H 1
3564 | #define HAVE_SYS_SOCKET_H 1
3565 | #define HAVE_SYS_TIME_H 1
3566 | #define HAVE_UNISTD_H 1
3567 | #define HAVE_ENDIAN_H 1
3568 | #define HAVE_ASSERT_H 1
3569 | #define HAVE_SYS_UIO_H 1
3570 | #define HAVE_SETITIMER 1
3571 | #define HAVE_ALARM 1
3572 | #define HAVE_VSNPRINTF 1
3573 | #define HAVE_VSPRINTF 1
3574 | #define HAVE_STRERROR 1
3575 | #define HAVE_SNPRINTF 1
3576 | #define HAVE_VA_COPY 1
3577 | #define HAVE_ALLOCA_H 1
3578 | #define HAVE_ALLOCA 1
3579 | #define HAVE_STRDUP 1
3580 | #define HAVE_CLOCK_GETTIME 1
3581 | #define HAVE_CLOCK_GETRES 1
3582 | #define HAVE_GETTIMEOFDAY 1
3583 | #define SIZEOF_INT_IS_AINT 1
3584 | #define MPIR_Pint int
3585 | #define MPIR_Upint unsigned int
3586 | #define MPIU_SIZE_T unsigned int
3587 | #define HAVE_PTHREAD_H 1
3588 | #define HAVE_SCHED_YIELD 1
3589 | /* end confdefs.h.  */
3590 | /* Define yield to an innocuous variant, in case <limits.h> declares yield.
3591 |    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
3592 | #define yield innocuous_yield
3593 |
3594 | /* System header to define __stub macros and hopefully few prototypes,
3595 |     which can conflict with char yield (); below.
3596 |     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
3597 |     <limits.h> exists even on freestanding compilers.  */
3598 |
3599 | #ifdef __STDC__
3600 | # include <limits.h>
3601 | #else
3602 | # include <assert.h>
3603 | #endif
3604 |
3605 | #undef yield
3606 |
3607 | /* Override any GCC internal prototype to avoid an error.
3608 |    Use char because int might match the return type of a GCC
3609 |    builtin and then its argument prototype would still apply.  */
3610 | #ifdef __cplusplus
3611 | extern "C"
3612 | #endif
3613 | char yield ();
3614 | /* The GNU C library defines this for functions which it implements
3615 |     to always fail with ENOSYS.  Some functions are actually named
3616 |     something starting with __ and the normal name is an alias.  */
3617 | #if defined __stub_yield || defined __stub___yield
3618 | choke me
3619 | #endif
3620 |
3621 | int
3622 | main ()
3623 | {
3624 | return yield ();
3625 |   ;
3626 |   return 0;
3627 | }
3628 configure:34231: result: no
3629 configure:34146: checking for usleep
3630 configure:34202: gcc -o conftest.exe  -O2   conftest.c  >&5
3631 configure:34209: $? = 0
3632 configure:34231: result: yes
3633 configure:34146: checking for sleep
3634 configure:34202: gcc -o conftest.exe  -O2   conftest.c  >&5
3635 configure:34209: $? = 0
3636 configure:34231: result: yes
3637 configure:34146: checking for select
3638 configure:34202: gcc -o conftest.exe  -O2   conftest.c  >&5
3639 configure:34209: $? = 0
3640 configure:34231: result: yes
3641 configure:34527: checking the sizeof MPI_Offset
3642 configure:34553: gcc -o conftest.exe  -O2   conftest.c          >&5
3643 configure:34556: $? = 0
3644 configure:34580: result: 8
3645 configure:35560: creating ./config.status
3646
3647 ## ---------------------- ##
3648 ## Running config.status. ##
3649 ## ---------------------- ##
3650
3651 This file was extended by config.status, which was
3652 generated by GNU Autoconf 2.62.  Invocation command line was
3653
3654   CONFIG_FILES    =
3655   CONFIG_HEADERS  =
3656   CONFIG_LINKS    =
3657   CONFIG_COMMANDS =
3658   $ ./config.status
3659
3660 on CorneliusVAIO
3661
3662 config.status:1267: creating Makefile
3663 config.status:1267: creating src/Makefile
3664 config.status:1267: creating src/include/Makefile
3665 config.status:1267: creating src/include/mpich2info.h
3666 config.status:1267: creating mpich2-doxygen
3667 config.status:1267: creating src/include/mpichtimer.h
3668 config.status:1267: creating src/binding/Makefile
3669 config.status:1267: creating src/binding/cxx/Makefile
3670 config.status:1267: creating src/binding/cxx/mpicxx.h
3671 config.status:1267: creating src/binding/f77/Makefile
3672 config.status:1267: creating src/binding/f77/mpif.h
3673 config.status:1267: creating src/binding/f77/setbotf.f
3674 config.status:1267: creating src/binding/f90/Makefile
3675 config.status:1267: creating src/binding/f90/mpi_sizeofs.f90
3676 config.status:1267: creating src/pkgconfig/mpich2-ch3.pc
3677 config.status:1267: creating src/pkgconfig/Makefile
3678 config.status:1267: creating src/env/mpixxx_opts.conf
3679 config.status:1267: creating src/env/mpicc
3680 config.status:1267: creating src/env/mpicc.conf
3681 config.status:1267: creating src/env/mpicc.bash
3682 config.status:1267: creating src/env/mpicxx
3683 config.status:1267: creating src/env/mpicxx.conf
3684 config.status:1267: creating src/env/mpicxx.bash
3685 config.status:1267: creating src/env/mpif77
3686 config.status:1267: creating src/env/mpif77.conf
3687 config.status:1267: creating src/env/mpif77.bash
3688 config.status:1267: creating src/env/mpif90
3689 config.status:1267: creating src/env/mpif90.conf
3690 config.status:1267: creating src/env/mpif90.bash
3691 config.status:1267: creating src/env/parkill
3692 config.status:1267: creating src/env/Makefile
3693 config.status:1267: creating src/util/createshlib
3694 config.status:1267: creating src/mpi/Makefile
3695 config.status:1267: creating src/mpi/attr/Makefile
3696 config.status:1267: creating src/mpi/coll/Makefile
3697 config.status:1267: creating src/mpi/comm/Makefile
3698 config.status:1267: creating src/mpi/datatype/Makefile
3699 config.status:1267: creating src/mpi/debugger/Makefile
3700 config.status:1267: creating src/mpi/errhan/Makefile
3701 config.status:1267: creating src/mpi/group/Makefile
3702 config.status:1267: creating src/mpi/init/Makefile
3703 config.status:1267: creating src/mpi/misc/Makefile
3704 config.status:1267: creating src/mpi/pt2pt/Makefile
3705 config.status:1267: creating src/mpi/rma/Makefile
3706 config.status:1267: creating src/mpi/spawn/Makefile
3707 config.status:1267: creating src/mpi/timer/Makefile
3708 config.status:1267: creating src/mpi/topo/Makefile
3709 config.status:1267: creating src/mpid/Makefile
3710 config.status:1267: creating src/mpid/common/Makefile
3711 config.status:1267: creating src/mpid/common/datatype/Makefile
3712 config.status:1267: creating src/mpid/common/datatype/dataloop/Makefile
3713 config.status:1267: creating src/pm/Makefile
3714 config.status:1267: creating src/pmi/Makefile
3715 config.status:1267: creating src/nameserv/Makefile
3716 config.status:1267: creating src/nameserv/file/Makefile
3717 config.status:1267: creating src/nameserv/mpd/Makefile
3718 config.status:1267: creating src/nameserv/pmi/Makefile
3719 config.status:1267: creating src/nameserv/test/Makefile
3720 config.status:1267: creating src/util/Makefile
3721 config.status:1267: creating src/util/info/Makefile
3722 config.status:1267: creating src/util/instrm/Makefile
3723 config.status:1267: creating src/util/thread/Makefile
3724 config.status:1267: creating src/util/thread/mpe_thread.h
3725 config.status:1267: creating src/util/mem/Makefile
3726 config.status:1267: creating src/util/msgs/Makefile
3727 config.status:1267: creating src/util/param/Makefile
3728 config.status:1267: creating src/util/dbg/Makefile
3729 config.status:1267: creating src/util/dbg/getfuncstack
3730 config.status:1267: creating src/util/osserv/Makefile
3731 config.status:1267: creating src/include/mpi.h
3732 config.status:1267: creating test/Makefile
3733 config.status:1267: creating test/util/Makefile
3734 config.status:1267: creating test/basic/Makefile
3735 config.status:1267: creating test/commands/Makefile
3736 config.status:1267: creating test/commands/cmdtests
3737 config.status:1267: creating test/mpid/Makefile
3738 config.status:1267: creating test/mpid/ch3/Makefile
3739 config.status:1267: creating test/util/timer/Makefile
3740 config.status:1267: creating examples/Makefile
3741 config.status:1267: creating examples/f77/Makefile
3742 config.status:1267: creating examples/f90/Makefile
3743 config.status:1267: creating examples/cxx/Makefile
3744 config.status:1267: creating src/util/logging/Makefile
3745 config.status:1267: creating src/util/logging/common/Makefile
3746 config.status:1267: creating doc/Makefile
3747 config.status:1267: creating doc/mansrc/Makefile
3748 config.status:1267: creating doc/mansrc/createhtmlindex
3749 config.status:1267: creating doc/refman/Makefile
3750 config.status:1267: creating doc/installguide/Makefile
3751 config.status:1267: creating doc/userguide/Makefile
3752 config.status:1267: creating doc/logging/Makefile
3753 config.status:1267: creating doc/design/Makefile
3754 config.status:1267: creating doc/smpd/Makefile
3755 config.status:1267: creating doc/windev/Makefile
3756 config.status:1267: creating src/include/mpichconf.h
3757 config.status:1488: src/include/mpichconf.h is unchanged
3758 config.status:1506: executing default-1 commands
3759 config.status:1506: executing default-2 commands
3760 config.status:1506: executing default-3 commands
3761 config.status:1506: executing default-4 commands
3762 config.status:1506: executing default-5 commands
3763 config.status:1506: executing default-6 commands
3764 config.status:1506: executing default-7 commands
3765 config.status:1506: executing default-8 commands
3766 config.status:1506: executing default-9 commands
3767 config.status:1506: executing default-10 commands
3768 config.status:1506: executing default-11 commands
3769 config.status:1506: executing default-12 commands
3770 config.status:1506: executing default-13 commands
3771 config.status:1506: executing default-14 commands
3772 configure:37084: === configuring in test/mpi (/home/Cornelius/mpich2-1.0.8/test/mpi)
3773 configure:37187: running /bin/sh ./configure --disable-option-checking '--prefix=/home/Cornelius/mpich2-install'  --cache-file=/dev/null --srcdir=.
3774
3775 ## ---------------- ##
3776 ## Cache variables. ##
3777 ## ---------------- ##
3778
3779 ac_cv_c_bigendian=no
3780 ac_cv_c_compiler_gnu=yes
3781 ac_cv_c_const=yes
3782 ac_cv_c_inline=inline
3783 ac_cv_c_int16_t=yes
3784 ac_cv_c_int32_t=yes
3785 ac_cv_c_int64_t=yes
3786 ac_cv_c_int8_t=yes
3787 ac_cv_c_uint16_t=yes
3788 ac_cv_c_uint32_t=yes
3789 ac_cv_c_uint64_t=yes
3790 ac_cv_c_uint8_t=yes
3791 ac_cv_cxx_bool=yes
3792 ac_cv_cxx_compiler_gnu=yes
3793 ac_cv_cxx_exceptions=yes
3794 ac_cv_cxx_namespace_std=yes
3795 ac_cv_cxx_namespaces=yes
3796 ac_cv_env_CCC_set=
3797 ac_cv_env_CCC_value=
3798 ac_cv_env_CC_set=
3799 ac_cv_env_CC_value=
3800 ac_cv_env_CFLAGS_set=
3801 ac_cv_env_CFLAGS_value=
3802 ac_cv_env_CPPFLAGS_set=
3803 ac_cv_env_CPPFLAGS_value=
3804 ac_cv_env_CPP_set=
3805 ac_cv_env_CPP_value=
3806 ac_cv_env_CXXCPP_set=
3807 ac_cv_env_CXXCPP_value=
3808 ac_cv_env_CXXFLAGS_set=
3809 ac_cv_env_CXXFLAGS_value=
3810 ac_cv_env_CXX_set=
3811 ac_cv_env_CXX_value=
3812 ac_cv_env_F77_set=
3813 ac_cv_env_F77_value=
3814 ac_cv_env_F90FLAGS_set=
3815 ac_cv_env_F90FLAGS_value=
3816 ac_cv_env_F90_set=
3817 ac_cv_env_F90_value=
3818 ac_cv_env_FFLAGS_set=
3819 ac_cv_env_FFLAGS_value=
3820 ac_cv_env_LDFLAGS_set=
3821 ac_cv_env_LDFLAGS_value=
3822 ac_cv_env_LIBS_set=
3823 ac_cv_env_LIBS_value=
3824 ac_cv_env_MPICH2LIB_CFLAGS_set=
3825 ac_cv_env_MPICH2LIB_CFLAGS_value=
3826 ac_cv_env_MPICH2LIB_CXXFLAGS_set=
3827 ac_cv_env_MPICH2LIB_CXXFLAGS_value=
3828 ac_cv_env_MPICH2LIB_F90FLAGS_set=
3829 ac_cv_env_MPICH2LIB_F90FLAGS_value=
3830 ac_cv_env_MPICH2LIB_FFLAGS_set=
3831 ac_cv_env_MPICH2LIB_FFLAGS_value=
3832 ac_cv_env_build_alias_set=
3833 ac_cv_env_build_alias_value=
3834 ac_cv_env_host_alias_set=
3835 ac_cv_env_host_alias_value=
3836 ac_cv_env_target_alias_set=
3837 ac_cv_env_target_alias_value=
3838 ac_cv_exeext=.exe
3839 ac_cv_f77_compiler_gnu=yes
3840 ac_cv_f77_libs=' -L/usr/lib/gcc/i686-pc-cygwin/3.4.4 -L/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../.. -lfrtbegin -lg2c -lcygwin -luser32 -lkernel32 -ladvapi32 -lshell32'
3841 ac_cv_func_alarm=yes
3842 ac_cv_func_alloca_works=yes
3843 ac_cv_func_clock_getres=yes
3844 ac_cv_func_clock_gettime=yes
3845 ac_cv_func_gethrtime=no
3846 ac_cv_func_gettimeofday=yes
3847 ac_cv_func_pthread_cleanup_push=no
3848 ac_cv_func_pthread_yield=no
3849 ac_cv_func_sched_yield=yes
3850 ac_cv_func_select=yes
3851 ac_cv_func_setitimer=yes
3852 ac_cv_func_sleep=yes
3853 ac_cv_func_snprintf=yes
3854 ac_cv_func_strdup=yes
3855 ac_cv_func_strerror=yes
3856 ac_cv_func_usleep=yes
3857 ac_cv_func_vsnprintf=yes
3858 ac_cv_func_vsprintf=yes
3859 ac_cv_func_yield=no
3860 ac_cv_header_assert_h=yes
3861 ac_cv_header_complex=yes
3862 ac_cv_header_endian_h=yes
3863 ac_cv_header_errno_h=yes
3864 ac_cv_header_inttypes_h=yes
3865 ac_cv_header_limits_h=yes
3866 ac_cv_header_memory_h=yes
3867 ac_cv_header_pthread_h=yes
3868 ac_cv_header_stdarg_h=yes
3869 ac_cv_header_stdc=no
3870 ac_cv_header_stddef_h=yes
3871 ac_cv_header_stdint_h=yes
3872 ac_cv_header_stdlib_h=yes
3873 ac_cv_header_string_h=yes
3874 ac_cv_header_strings_h=yes
3875 ac_cv_header_sys_bitypes_h=yes
3876 ac_cv_header_sys_socket_h=yes
3877 ac_cv_header_sys_stat_h=yes
3878 ac_cv_header_sys_time_h=yes
3879 ac_cv_header_sys_types_h=yes
3880 ac_cv_header_sys_uio_h=yes
3881 ac_cv_header_unistd_h=yes
3882 ac_cv_objext=o
3883 ac_cv_path_BASH_SHELL=/usr/bin/bash
3884 ac_cv_path_DOCTEXT=false
3885 ac_cv_path_EGREP='/usr/bin/grep -E'
3886 ac_cv_path_GREP=/usr/bin/grep
3887 ac_cv_path_PERL=/usr/bin/perl
3888 ac_cv_path_install='/usr/bin/install -c'
3889 ac_cv_prog_AR=ar
3890 ac_cv_prog_CXX=c++
3891 ac_cv_prog_CXXCPP='c++ -E'
3892 ac_cv_prog_ETAGS=etags
3893 ac_cv_prog_KILLALL=killall
3894 ac_cv_prog_MAKE=make
3895 ac_cv_prog_RANLIB=ranlib
3896 ac_cv_prog_ac_ct_CC=gcc
3897 ac_cv_prog_ac_ct_F77=g77
3898 ac_cv_prog_cc_c89=
3899 ac_cv_prog_cc_g=yes
3900 ac_cv_prog_cxx_g=yes
3901 ac_cv_prog_f77_g=yes
3902 ac_cv_prog_f77_v=-v
3903 ac_cv_prog_install_breaks_libs=no
3904 ac_cv_search_pthread_key_create='none required'
3905 ac_cv_sizeof_Complex=8
3906 ac_cv_sizeof_DoubleComplex=16
3907 ac_cv_sizeof_LongDoubleComplex=24
3908 ac_cv_sizeof_MPI_Offset=8
3909 ac_cv_sizeof_bool=1
3910 ac_cv_sizeof_char=1
3911 ac_cv_sizeof_double=8
3912 ac_cv_sizeof_float=4
3913 ac_cv_sizeof_int=4
3914 ac_cv_sizeof_long=4
3915 ac_cv_sizeof_long_double=12
3916 ac_cv_sizeof_long_long=8
3917 ac_cv_sizeof_short=2
3918 ac_cv_sizeof_unsigned_char=1
3919 ac_cv_sizeof_unsigned_int=4
3920 ac_cv_sizeof_unsigned_long=4
3921 ac_cv_sizeof_unsigned_long_long=8
3922 ac_cv_sizeof_unsigned_short=2
3923 ac_cv_sizeof_void_p=4
3924 ac_cv_sizeof_wchar_t=2
3925 ac_cv_type_size_t=yes
3926 ac_cv_working_alloca_h=yes
3927 lac_cv_use_atomic_updates=yes
3928 pac_cv_attr_weak=yes
3929 pac_cv_c_char_p_is_byte=yes
3930 pac_cv_c_double_alignment_exception=no
3931 pac_cv_c_double_pos_align=no
3932 pac_cv_c_fp_align_nr=4
3933 pac_cv_c_llint_pos_align=no
3934 pac_cv_c_max_double_fp_align=eight
3935 pac_cv_c_max_fp_align=four
3936 pac_cv_c_max_integer_align=eight
3937 pac_cv_c_max_longdouble_fp_align=four
3938 pac_cv_c_restrict=__restrict
3939 pac_cv_c_struct_align_nr=8
3940 pac_cv_c_volatile=yes
3941 pac_cv_cc_has___func__=yes
3942 pac_cv_cxx_builds_exe=yes
3943 pac_cv_cxx_compiles_string=yes
3944 pac_cv_cxx_has_iostream=yes
3945 pac_cv_cxx_has_math=no
3946 pac_cv_f77_flibs_valid=yes
3947 pac_cv_f77_sizeof_double_precision=8
3948 pac_cv_f77_sizeof_integer=4
3949 pac_cv_f77_sizeof_real=4
3950 pac_cv_f90_ext=f
3951 pac_cv_f90_ext_f90=no
3952 pac_cv_fort_accepts_F=yes
3953 pac_cv_fort_integer16=no
3954 pac_cv_fort_integer1=yes
3955 pac_cv_fort_integer2=yes
3956 pac_cv_fort_integer4=yes
3957 pac_cv_fort_integer8=yes
3958 pac_cv_fort_real16=no
3959 pac_cv_fort_real4=yes
3960 pac_cv_fort_real8=yes
3961 pac_cv_func_decl_snprintf=no
3962 pac_cv_func_decl_strdup=no
3963 pac_cv_func_decl_vsnprintf=no
3964 pac_cv_func_pthread_cleanup_push=no
3965 pac_cv_func_va_copy=yes
3966 pac_cv_gnu_attr_format=yes
3967 pac_cv_gnu_attr_pure=yes
3968 pac_cv_have_long_double=yes
3969 pac_cv_have_long_long=yes
3970 pac_cv_int32_t_alignment=no
3971 pac_cv_int64_t_alignment=no
3972 pac_cv_lib_pthread_broken=no
3973 pac_cv_mkdir_p=yes
3974 pac_cv_mpi_bsend_overhead=59
3975 pac_cv_my_conf_dir=/home/Cornelius/mpich2-1.0.8
3976 pac_cv_pointers_have_int_alignment=yes
3977 pac_cv_posix_clock_realtime=yes
3978 pac_cv_prog_c_unaligned_doubles=yes
3979 pac_cv_prog_c_weak_symbols=no
3980 pac_cv_prog_f77_and_c_stdio_libs=none
3981 pac_cv_prog_f77_exclaim_comments=yes
3982 pac_cv_prog_f77_has_incdir=-I
3983 pac_cv_prog_f77_is_f90=no
3984 pac_cv_prog_f77_library_dir_flag=-L
3985 pac_cv_prog_f77_name_mangle='lower doubleunderscore'
3986 pac_cv_prog_f77_true_false_value='1 0'
3987 pac_cv_prog_make_allows_comments=yes
3988 pac_cv_prog_make_found_clock_skew=no
3989 pac_cv_prog_make_include=yes
3990 pac_cv_prog_make_set_cflags=no
3991 pac_cv_prog_make_vpath=VPATH
3992 pac_cv_sizeof_2_int=8
3993 pac_cv_sizeof_double_int=12
3994 pac_cv_sizeof_float_int=8
3995 pac_cv_sizeof_long_double_int=16
3996 pac_cv_sizeof_long_int=8
3997 pac_cv_sizeof_mpi_status=20
3998 pac_cv_sizeof_short_int=6
3999 pac_cv_struct_timespec_defined=yes
4000 pac_cv_test_stdcall=
4001
4002 ## ----------------- ##
4003 ## Output variables. ##
4004 ## ----------------- ##
4005
4006 ABIVERSION='1:1'
4007 ADDRESS_KIND='0'
4008 ALLOCA=''
4009 AR='ar'
4010 BASH_SHELL='/usr/bin/bash'
4011 BSEND_OVERHEAD='59'
4012 BUILD_BASH_SCRIPTS='yes'
4013 BUILD_DLLS='no'
4014 BUILD_TVDLL='no'
4015 CC='gcc'
4016 CC_SHL='true'
4017 CC_SHL_DBG=''
4018 CFLAGS=' -O2'
4019 CONFIGURE_ARGS_CLEAN='--prefix=/home/Cornelius/mpich2-install'
4020 CONFIGURE_ARGUMENTS=' '\''--prefix=/home/Cornelius/mpich2-install'\'''
4021 CPP=''
4022 CPPFLAGS='  -I/home/Cornelius/mpich2-1.0.8/src/mpid/ch3/include -I/home/Cornelius/mpich2-1.0.8/src/mpid/ch3/include -I/home/Cornelius/mpich2-1.0.8/src/mpid/common/datatype -I/home/Cornelius/mpich2-1.0.8/src/mpid/common/datatype -I/home/Cornelius/mpich2-1.0.8/src/mpid/common/locks -I/home/Cornelius/mpich2-1.0.8/src/mpid/common/locks -I/home/Cornelius/mpich2-1.0.8/src/mpid/ch3/channels/sock/include -I/home/Cornelius/mpich2-1.0.8/src/mpid/ch3/channels/sock/include -I/home/Cornelius/mpich2-1.0.8/src/mpid/common/sock -I/home/Cornelius/mpich2-1.0.8/src/mpid/common/sock -I/home/Cornelius/mpich2-1.0.8/src/mpid/common/sock/poll -I/home/Cornelius/mpich2-1.0.8/src/mpid/common/sock/poll'
4023 CREATESHLIB='false'
4024 CXX='c++'
4025 CXXCPP='c++ -E'
4026 CXXFLAGS=' -O2'
4027 CXX_DEFS=' -DHAVE_CXX_IOSTREAM -DHAVE_NAMESPACE_STD'
4028 CXX_LINKPATH_SHL=''
4029 CXX_SHL='false'
4030 C_LINKPATH_SHL=''
4031 C_LINK_SHL='true'
4032 C_LINK_SHL_DBG=''
4033 DBG_SHLIB_TYPE=''
4034 DEFS='-DHAVE_CONFIG_H'
4035 DEVICE='ch3:sock'
4036 DEVICE_ARGS=''
4037 DEVICE_NAME='ch3'
4038 DLLIMPORT=''
4039 DOCTEXT='false'
4040 DOCTEXTSTYLE=''
4041 ECHO_C=''
4042 ECHO_N='-n'
4043 ECHO_T=''
4044 EGREP='/usr/bin/grep -E'
4045 ENABLE_SHLIB='none'
4046 ETAGS='etags'
4047 ETAGSADD='--language=c'
4048 EXEEXT='.exe'
4049 EXTERNAL_SRC_DIRS=''
4050 EXTRA_STATUS_DECL=''
4051 F77='g77'
4052 F77CPP=''
4053 F77_COMPLEX16='1275072554'
4054 F77_COMPLEX32='MPI_DATATYPE_NULL'
4055 F77_COMPLEX8='1275070504'
4056 F77_INCDIR='-I'
4057 F77_INTEGER16='MPI_DATATYPE_NULL'
4058 F77_INTEGER1='1275068717'
4059 F77_INTEGER2='1275068975'
4060 F77_INTEGER4='1275069488'
4061 F77_INTEGER8='1275070513'
4062 F77_IN_C_LIBS=''
4063 F77_LIBDIR_LEADER='-L'
4064 F77_NAME_MANGLE='F77_NAME_LOWER_2USCORE'
4065 F77_OTHER_LIBS=''
4066 F77_REAL16='MPI_DATATYPE_NULL'
4067 F77_REAL4='1275069479'
4068 F77_REAL8='1275070505'
4069 F90=''
4070 F90CPP=''
4071 F90EXT=''
4072 F90FLAGS=' '
4073 F90INC=''
4074 F90INCFLAG=''
4075 F90MODEXT=''
4076 F90MODINCFLAG=''
4077 F90MODINCSPEC=''
4078 F90_LINKPATH_SHL=''
4079 F90_OTHER_LIBS=''
4080 F90_SHL=''
4081 F90_WORK_FILES_ARG=''
4082 FC='g77'
4083 FC_LINKPATH_SHL=''
4084 FC_SHL='false'
4085 FFLAGS=' -O2'
4086 FINCLUDES='-I/home/Cornelius/mpich2-1.0.8/src'
4087 FLIBS=' -L/usr/lib/gcc/i686-pc-cygwin/3.4.4 -L/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../.. -lfrtbegin -lg2c -lcygwin -luser32 -lkernel32 -ladvapi32 -lshell32'
4088 FORTRAN_BINDING='1'
4089 FORTRAN_MPI_OFFSET='integer*8'
4090 FWRAPNAME='fmpich'
4091 GCC='yes'
4092 GNUCXX_MINORVERSION='4'
4093 GNUCXX_VERSION='3'
4094 GREP='/usr/bin/grep'
4095 HAVE_CXX_EXCEPTIONS='1'
4096 HAVE_ROMIO='#include "mpio.h"'
4097 INCLUDE_MPICXX_H='#include "mpicxx.h"'
4098 INCLUDE_MPIDDEFS_H='/* ... no device specific definitions ... */'
4099 INSTALL_DATA='${INSTALL} -m 644'
4100 INSTALL_PROGRAM='${INSTALL}'
4101 INSTALL_SCRIPT='${INSTALL}'
4102 KILLALL='killall'
4103 LDFLAGS=''
4104 LIBOBJS=''
4105 LIBS='        '
4106 LIBTOOL=''
4107 LTLIBOBJS=''
4108 MAKE='make'
4109 MAKE_DEPEND_C='gcc -MM'
4110 MANY_PM='no'
4111 MKDIR_P='mkdir -p'
4112 MPE_THREAD_LIB_NAME='mpich'
4113 MPIBASEMODNAME='mpi_base'
4114 MPICC='$(bindir)/mpicc'
4115 MPICH2LIB_CFLAGS=''
4116 MPICH2LIB_CXXFLAGS=''
4117 MPICH2LIB_F90FLAGS=''
4118 MPICH2LIB_FFLAGS=''
4119 MPICH_TIMER_KIND='USE_CLOCK_GETTIME'
4120 MPICONSTMODNAME='mpi_constants'
4121 MPICXX='$(bindir)/mpicxx'
4122 MPICXXLIBNAME='mpichcxx'
4123 MPID_TIMER_TYPE='struct timespec'
4124 MPIF77='$(bindir)/mpif77'
4125 MPIF90='$(bindir)/mpif90'
4126 MPIFLIBNAME='mpich'
4127 MPIFPMPI=',PMPI_WTIME,PMPI_WTICK'
4128 MPILIBNAME='mpich'
4129 MPIMODNAME='mpi'
4130 MPIR_CXX_BOOL='0x4c000133'
4131 MPIR_CXX_COMPLEX='0x4c000834'
4132 MPIR_CXX_DOUBLE_COMPLEX='0x4c001035'
4133 MPIR_CXX_LONG_DOUBLE_COMPLEX='0x4c001836'
4134 MPISIZEOFMODNAME='mpi_sizeofs'
4135 MPIU_DLL_SPEC_DEF='#define MPIU_DLL_SPEC'
4136 MPI_2COMPLEX='1275072548'
4137 MPI_2DOUBLE_COMPLEX='1275076645'
4138 MPI_2DOUBLE_PRECISION='1275072547'
4139 MPI_2INT='0x4c000816'
4140 MPI_2INTEGER='1275070496'
4141 MPI_2REAL='1275070497'
4142 MPI_AINT='int'
4143 MPI_AINT_FMT_DEC_SPEC='%d'
4144 MPI_AINT_FMT_HEX_SPEC='%x'
4145 MPI_BYTE='0x4c00010d'
4146 MPI_CHAR='0x4c000101'
4147 MPI_CHARACTER='1275068698'
4148 MPI_COMPLEX16='0x4c00102a'
4149 MPI_COMPLEX32='MPI_DATATYPE_NULL'
4150 MPI_COMPLEX8='0x4c000828'
4151 MPI_COMPLEX='1275070494'
4152 MPI_DOUBLE='0x4c00080b'
4153 MPI_DOUBLE_COMPLEX='1275072546'
4154 MPI_DOUBLE_INT='0x8c000001'
4155 MPI_DOUBLE_PRECISION='1275070495'
4156 MPI_F77_BYTE='1275068685'
4157 MPI_F77_LB='1275068432'
4158 MPI_F77_PACKED='1275068687'
4159 MPI_F77_UB='1275068433'
4160 MPI_FINT='int'
4161 MPI_FLOAT='0x4c00040a'
4162 MPI_FLOAT_INT='0x8c000000'
4163 MPI_INT='0x4c000405'
4164 MPI_INTEGER16='MPI_DATATYPE_NULL'
4165 MPI_INTEGER1='0x4c00012d'
4166 MPI_INTEGER2='0x4c00022f'
4167 MPI_INTEGER4='0x4c000430'
4168 MPI_INTEGER8='0x4c000831'
4169 MPI_INTEGER='1275069467'
4170 MPI_LB='0x4c000010'
4171 MPI_LOGICAL='1275069469'
4172 MPI_LONG='0x4c000407'
4173 MPI_LONG_DOUBLE='0x4c000c0c'
4174 MPI_LONG_DOUBLE_INT='0x8c000004'
4175 MPI_LONG_INT='0x8c000002'
4176 MPI_LONG_LONG='0x4c000809'
4177 MPI_MAX_PROCESSOR_NAME='128'
4178 MPI_OFFSET='long long'
4179 MPI_OFFSET_TYPEDEF='typedef long long MPI_Offset;'
4180 MPI_PACKED='0x4c00010f'
4181 MPI_REAL16='MPI_DATATYPE_NULL'
4182 MPI_REAL4='0x4c000427'
4183 MPI_REAL8='0x4c000829'
4184 MPI_REAL='1275069468'
4185 MPI_SHORT='0x4c000203'
4186 MPI_SHORT_INT='0x8c000003'
4187 MPI_SIGNED_CHAR='0x4c000118'
4188 MPI_STATUS_SIZE='5'
4189 MPI_UB='0x4c000011'
4190 MPI_UNSIGNED_CHAR='0x4c000102'
4191 MPI_UNSIGNED_INT='0x4c000406'
4192 MPI_UNSIGNED_LONG='0x4c000408'
4193 MPI_UNSIGNED_LONG_LONG='0x4c000819'
4194 MPI_UNSIGNED_SHORT='0x4c000204'
4195 MPI_WCHAR='0x4c00020e'
4196 NEEDSPLIB='yes'
4197 NO_WEAK_SYM='build_proflib'
4198 NO_WEAK_SYM_TARGET='build_proflib'
4199 NUMVERSION='10008300'
4200 OBJEXT='o'
4201 OFFSET_KIND='0'
4202 PACKAGE_BUGREPORT=''
4203 PACKAGE_NAME=''
4204 PACKAGE_STRING=''
4205 PACKAGE_TARNAME=''
4206 PACKAGE_VERSION=''
4207 PATH_SEPARATOR=':'
4208 PERL='/usr/bin/perl'
4209 PMPIFLIBNAME='pmpich'
4210 PMPILIBNAME='pmpich'
4211 PROFILE_DEF_MPI='-DMPICH_MPI_FROM_PMPI'
4212 RANLIB='ranlib'
4213 RANLIB_AFTER_INSTALL='no'
4214 RELEASE_DATE='Unknown, built on Thu Nov 27 12:35:23 MPST 2008'
4215 REQD=''
4216 REQI1=''
4217 REQI2=''
4218 REQI8=''
4219 SET_CFLAGS=''
4220 SET_MAKE='MAKE=make'
4221 SHELL='/bin/sh'
4222 SHLIB_EXT='dll'
4223 SHLIB_FROM_LO='no'
4224 SHLIB_INSTALL='$(INSTALL_PROGRAM)'
4225 SIZEOF_F90_CHARACTER='1'
4226 SIZEOF_F90_DOUBLE_PRECISION='8'
4227 SIZEOF_F90_INTEGER='4'
4228 SIZEOF_F90_REAL='4'
4229 SIZEOF_MPI_STATUS='20'
4230 TESTCPP=''
4231 THR_CFLAGS=' -D_REENTRANT -D_THREAD_SAFE'
4232 THR_CPPFLAGS=''
4233 THR_DEFS=''
4234 THR_LDFLAGS=''
4235 THR_LIBS=' -lpthread'
4236 VERSION='1.0.8'
4237 VPATH='VPATH=.:${srcdir}'
4238 WRAPPER_CFLAGS=''
4239 WRAPPER_CXXFLAGS=''
4240 WRAPPER_F90FLAGS=''
4241 WRAPPER_FFLAGS=''
4242 WRAPPER_LDFLAGS='  '
4243 XARGS_NODATA_OPT='-r'
4244 ac_ct_CC='gcc'
4245 ac_ct_CXX=''
4246 ac_ct_F77='g77'
4247 ac_ct_F90=''
4248 bindings=' f77 cxx'
4249 bindings_dirs=' src/binding/f77 src/binding/cxx'
4250 bindir='${exec_prefix}/bin'
4251 build_alias=''
4252 datadir='${datarootdir}'
4253 datarootdir='${prefix}/share'
4254 debugger_dir=''
4255 device_name='ch3'
4256 docdir='${datarootdir}/doc/${PACKAGE}'
4257 dvidir='${docdir}'
4258 exec_prefix='${prefix}'
4259 host_alias=''
4260 htmldir='${docdir}'
4261 includedir='${prefix}/include'
4262 infodir='${datarootdir}/info'
4263 libdir='${exec_prefix}/lib'
4264 libexecdir='${exec_prefix}/libexec'
4265 localedir='${datarootdir}/locale'
4266 localstatedir='${prefix}/var'
4267 logging_dir=''
4268 logging_name='none'
4269 logging_subdirs=''
4270 mandir='${datarootdir}/man'
4271 master_top_builddir='/home/Cornelius/mpich2-1.0.8'
4272 master_top_srcdir='/home/Cornelius/mpich2-1.0.8'
4273 modincdir=''
4274 mpe_dir='mpe2'
4275 nameserv_name='mpd'
4276 oldincludedir='/usr/include'
4277 other_install_dirs=' src/pm/mpd src/mpe2'
4278 other_pm_names=''
4279 pac_prog=''
4280 pdfdir='${docdir}'
4281 pm_name='mpd'
4282 pmi_name='simple'
4283 prefix='/home/Cornelius/mpich2-install'
4284 program_transform_name='s,x,x,'
4285 psdir='${docdir}'
4286 romio_dir='romio'
4287 sbindir='${exec_prefix}/sbin'
4288 sharedstatedir='${prefix}/com'
4289 subdirs=' test/mpi'
4290 subsystems=' src/mpid/ch3 src/mpid/common/sock  src/mpid/common/locks src/mpi/romio src/pmi/simple src/pm/mpd src/mpe2 '
4291 sysconfdir='${prefix}/etc'
4292 target_alias=''
4293
4294 ## ------------------- ##
4295 ## File substitutions. ##
4296 ## ------------------- ##
4297
4298 MPE_THREAD_FUNCS='./src/util/thread/posix_funcs.i'
4299 MPE_THREAD_TYPEDEFS='./src/util/thread/posix_types.i'
4300
4301 ## ----------- ##
4302 ## confdefs.h. ##
4303 ## ----------- ##
4304
4305 #define PACKAGE_NAME ""
4306 #define PACKAGE_TARNAME ""
4307 #define PACKAGE_VERSION ""
4308 #define PACKAGE_STRING ""
4309 #define PACKAGE_BUGREPORT ""
4310 #define HAVE_ERROR_CHECKING MPID_ERROR_LEVEL_ALL
4311 #define MPICH_ERROR_MSG_LEVEL MPICH_ERROR_MSG_ALL
4312 #define USE_LOGGING MPID_LOGGING_NONE
4313 #define HAVE_RUNTIME_THREADCHECK 1
4314 #define MPICH_THREAD_LEVEL MPI_THREAD_MULTIPLE
4315 #define USE_THREAD_IMPL MPICH_THREAD_IMPL_GLOBAL_MUTEX
4316 #define HAVE_ROMIO 1
4317 #define HAVE_LONG_LONG 1
4318 #define F77_NAME_LOWER_2USCORE 1
4319 #define STDCALL
4320 #define HAVE_FORTRAN_BINDING 1
4321 #define HAVE_CXX_EXCEPTIONS /**/
4322 #define HAVE_NAMESPACES /**/
4323 #define HAVE_NAMESPACE_STD /**/
4324 #define HAVE_CXX_BINDING 1
4325 #define HAVE_NAMEPUB_SERVICE 1
4326 #define restrict __restrict
4327 #define HAVE_GCC_ATTRIBUTE 1
4328 #define HAVE_SYS_TYPES_H 1
4329 #define HAVE_SYS_STAT_H 1
4330 #define HAVE_STDLIB_H 1
4331 #define HAVE_STRING_H 1
4332 #define HAVE_MEMORY_H 1
4333 #define HAVE_STRINGS_H 1
4334 #define HAVE_INTTYPES_H 1
4335 #define HAVE_STDINT_H 1
4336 #define HAVE_UNISTD_H 1
4337 #define WORDS_LITTLEENDIAN 1
4338 #define HAVE_LONG_DOUBLE 1
4339 #define HAVE_LONG_LONG_INT 1
4340 #define HAVE_MAX_INTEGER_ALIGNMENT 8
4341 #define HAVE_MAX_STRUCT_ALIGNMENT 8
4342 #define HAVE_MAX_FP_ALIGNMENT 4
4343 #define HAVE_MAX_DOUBLE_FP_ALIGNMENT 8
4344 #define HAVE_MAX_LONG_DOUBLE_FP_ALIGNMENT 4
4345 #define SIZEOF_CHAR 1
4346 #define SIZEOF_UNSIGNED_CHAR 1
4347 #define SIZEOF_SHORT 2
4348 #define SIZEOF_UNSIGNED_SHORT 2
4349 #define SIZEOF_INT 4
4350 #define SIZEOF_UNSIGNED_INT 4
4351 #define SIZEOF_LONG 4
4352 #define SIZEOF_UNSIGNED_LONG 4
4353 #define SIZEOF_LONG_LONG 8
4354 #define SIZEOF_UNSIGNED_LONG_LONG 8
4355 #define SIZEOF_FLOAT 4
4356 #define SIZEOF_DOUBLE 8
4357 #define SIZEOF_LONG_DOUBLE 12
4358 #define SIZEOF_WCHAR_T 2
4359 #define SIZEOF_VOID_P 4
4360 #define HAVE_SYS_BITYPES_H 1
4361 #define HAVE_INTTYPES_H 1
4362 #define HAVE_INT16_T 1
4363 #define HAVE_INT32_T 1
4364 #define HAVE_INT64_T 1
4365 #define MPIR_REAL4_CTYPE float
4366 #define MPIR_REAL8_CTYPE double
4367 #define MPIR_INTEGER1_CTYPE char
4368 #define MPIR_INTEGER2_CTYPE short
4369 #define MPIR_INTEGER4_CTYPE int
4370 #define MPIR_INTEGER8_CTYPE long long
4371 #define SIZEOF_F77_INTEGER 4
4372 #define SIZEOF_F77_REAL 4
4373 #define SIZEOF_F77_DOUBLE_PRECISION 8
4374 #define HAVE_FINT_IS_INT 1
4375 #define F77_TRUE_VALUE_SET 1
4376 #define F77_TRUE_VALUE 1
4377 #define F77_FALSE_VALUE 0
4378 #define SIZEOF_BOOL 1
4379 #define SIZEOF_COMPLEX 8
4380 #define SIZEOF_DOUBLECOMPLEX 16
4381 #define SIZEOF_LONGDOUBLECOMPLEX 24
4382 #define MPIR_CXX_COMPLEX_VALUE 0x4c000834
4383 #define MPIR_CXX_DOUBLE_COMPLEX_VALUE 0x4c001035
4384 #define MPIR_CXX_LONG_DOUBLE_COMPLEX_VALUE 0x4c001836
4385 #define HAVE_CXX_COMPLEX 1
4386 #define HAVE_ANY_INT64_T_ALIGNMENT 1
4387 #define HAVE_ANY_INT32_T_ALIGNMENT 1
4388 #define HAVE_GCC_AND_PENTIUM_ASM 1
4389 #define USE_ATOMIC_UPDATES /**/
4390 #define HAVE_STDLIB_H 1
4391 #define HAVE_STDARG_H 1
4392 #define HAVE_SYS_TYPES_H 1
4393 #define HAVE_INTTYPES_H 1
4394 #define HAVE_LIMITS_H 1
4395 #define HAVE_STDDEF_H 1
4396 #define HAVE_ERRNO_H 1
4397 #define HAVE_SYS_SOCKET_H 1
4398 #define HAVE_SYS_TIME_H 1
4399 #define HAVE_UNISTD_H 1
4400 #define HAVE_ENDIAN_H 1
4401 #define HAVE_ASSERT_H 1
4402 #define HAVE_SYS_UIO_H 1
4403 #define HAVE_SETITIMER 1
4404 #define HAVE_ALARM 1
4405 #define HAVE_VSNPRINTF 1
4406 #define HAVE_VSPRINTF 1
4407 #define HAVE_STRERROR 1
4408 #define HAVE_SNPRINTF 1
4409 #define HAVE_VA_COPY 1
4410 #define HAVE_ALLOCA_H 1
4411 #define HAVE_ALLOCA 1
4412 #define HAVE_STRDUP 1
4413 #define HAVE_CLOCK_GETTIME 1
4414 #define HAVE_CLOCK_GETRES 1
4415 #define HAVE_GETTIMEOFDAY 1
4416 #define SIZEOF_INT_IS_AINT 1
4417 #define MPIR_Pint int
4418 #define MPIR_Upint unsigned int
4419 #define MPIU_SIZE_T unsigned int
4420 #define HAVE_PTHREAD_H 1
4421 #define HAVE_SCHED_YIELD 1
4422 #define HAVE_USLEEP 1
4423 #define HAVE_SLEEP 1
4424 #define HAVE_SELECT 1
4425 #define USE_THREAD_PKG MPICH_THREAD_PKG_POSIX
4426 #define HAVE_MPICHCONF 1
4427
4428 configure: exit 0