-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigs.conf
888 lines (875 loc) · 44.3 KB
/
configs.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
---------------------------------------------
----------- Configuring libMesh -------------
---------------------------------------------
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether UID '1000' is supported by ustar format... yes
checking whether GID '100' is supported by ustar format... yes
checking how to create a ustar tar archive... gnutar
checking whether make supports nested variables... (cached) yes
checking whether to enable maintainer-specific portions of Makefiles... yes
checking for src/base/libmesh.C... yes
checking for perl... /usr/bin/perl
checking for style of include used by make... GNU
checking for mpicxx... mpicxx
checking whether the C++ compiler works... yes
checking for C++ compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether mpicxx accepts -g... yes
checking dependency style of mpicxx... gcc3
<<< C++ compiler is gcc-4.9 >>>
checking for mpicc... mpicc
checking whether we are using the GNU C compiler... yes
checking whether mpicc accepts -g... yes
checking for mpicc option to accept ISO C89... none needed
checking dependency style of mpicc... gcc3
checking for mpif90... mpif90
checking whether we are using the GNU Fortran compiler... yes
checking whether mpif90 accepts -g... yes
checking for mpif77... mpif77
checking whether we are using the GNU Fortran 77 compiler... yes
checking whether mpif77 accepts -g... yes
checking whether mpicxx supports C++11 features by default... no
checking whether mpicxx supports C++11 features with -std=gnu++11... yes
No build methods specified, defaulting to "dbg devel opt"
<<< Configuring libMesh with methods "dbg devel opt" >>>
checking for C++11 std::move support... yes
checking for C++11 std::shared_ptr support with dbg flags... yes
checking for C++11 std::shared_ptr support with devel flags... yes
checking for C++11 std::shared_ptr support with opt flags... yes
checking for C++11 std::unique_ptr support... yes
checking for C++11 std::regex support... yes
checking for C++11 override keyword support... yes
checking for C++11 initializer list support... yes
checking for C++11 variadic template support... yes
checking for C++11 <thread> support... yes
checking for C++11 <type_traits> support... yes
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by mpicc... /usr/x86_64-pc-linux-gnu/bin/ld
checking if the linker (/usr/x86_64-pc-linux-gnu/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/x86_64-pc-linux-gnu/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from mpicc object... ok
checking for sysroot... no
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking how to run the C preprocessor... mpicc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if mpicc supports -fno-rtti -fno-exceptions... no
checking for mpicc option to produce PIC... -fPIC -DPIC
checking if mpicc PIC flag -fPIC -DPIC works... yes
checking if mpicc static flag -static works... no
checking if mpicc supports -c -o file.o... yes
checking if mpicc supports -c -o file.o... (cached) yes
checking whether the mpicc linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking how to run the C++ preprocessor... mpicxx -E
checking for ld used by mpicxx... /usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64
checking if the linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the mpicxx linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for mpicxx option to produce PIC... -fPIC -DPIC
checking if mpicxx PIC flag -fPIC -DPIC works... yes
checking if mpicxx static flag -static works... no
checking if mpicxx supports -c -o file.o... yes
checking if mpicxx supports -c -o file.o... (cached) yes
checking whether the mpicxx linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for mpif77 option to produce PIC... -fPIC
checking if mpif77 PIC flag -fPIC works... yes
checking if mpif77 static flag -static works... no
checking if mpif77 supports -c -o file.o... yes
checking if mpif77 supports -c -o file.o... (cached) yes
checking whether the mpif77 linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for mpif90 option to produce PIC... -fPIC
checking if mpif90 PIC flag -fPIC works... yes
checking if mpif90 static flag -static works... no
checking if mpif90 supports -c -o file.o... yes
checking if mpif90 supports -c -o file.o... (cached) yes
checking whether the mpif90 linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking Major version... 1
checking Minor version... 0
checking Point version... 0
checking whether ln -s works... yes
checking whether mpicc and cc understand -c and -o together... yes
checking for a sed that does not truncate output... (cached) /bin/sed
checking for pkg-config... /usr/bin/pkg-config
checking whether the compiler implements namespaces... yes
---------------------------------------------
------- Configuring compiler features -------
---------------------------------------------
<<< Default floating point is double precision (double) >>>
checking for C/C++ restrict keyword... __restrict
<<< Configuring library with getpwuid >>>
<<< Configuring library with exception throwing support >>>
<<< Configuring library with compile timestamps >>>
checking size of short int... 2
checking size of int... 4
checking size of unsigned int... 4
checking size of long int... 8
checking size of float... 4
checking size of double... 8
checking size of void *... 8
checking size of function_pointer... 8
checking whether the compiler supports Run-Time Type Identification... yes
checking getopt.h usability... yes
checking getopt.h presence... yes
checking for getopt.h... yes
checking csignal usability... yes
checking csignal presence... yes
checking for csignal... yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking whether the compiler has locale... yes
checking whether the compiler has stringstream... yes
checking fenv.h usability... yes
checking fenv.h presence... yes
checking for fenv.h... yes
checking xmmintrin.h usability... yes
checking xmmintrin.h presence... yes
checking for xmmintrin.h... yes
checking whether the compiler supports std::unordered_multimap... yes
checking whether the compiler supports std::unordered_map... yes
checking whether the compiler supports std::unordered_set... yes
checking whether the compiler supports std::hash... yes
checking for library containing dlopen... -ldl
checking whether the c++ compiler supports dlopen/dlsym/dlclose... yes
checking whether the compiler supports GCC C++ ABI name demangling... yes
checking whether the c++ compiler supports glibc backtrace... yes
checking for OpenMP flag of C++ compiler... -fopenmp
<<< Configuring library with OpenMP support >>>
---------------------------------------------
----- Done configuring compiler features ----
---------------------------------------------
---------------------------------------------
----- Configuring core library features -----
---------------------------------------------
configuring gdb command... "gdb"
<<< Configuring library with warnings >>>
>>> WARNING: using a legacy option <<<
>>> Configuring library to enable a default libMesh::CommWorld <<<
<<< Configuring library to require ``include "libmesh/etc.h"'' style >>>
<<< Configuring library to keep names in libMesh namespace >>>
configuring size of boundary_id... 2
configuring size of dof_id... 4
configuring size of processor_id... 2
configuring size of subdomain_id... 2
<<< Configuring library with AMR support >>>
<<< Configuring library with variational smoother support >>>
<<< Configuring library with Dirichlet constraint support >>>
<<< Configuring library to use ghosted local vectors >>>
<<< Configuring library to store node valence >>>
<<< Configuring library with higher order p-FEM shapes >>>
<<< Configuring library with infinite elements >>>
<<< Configuring library with second derivatives >>>
checking rpc/rpc.h usability... yes
checking rpc/rpc.h presence... yes
checking for rpc/rpc.h... yes
checking for xdrstdio_create... yes
<<< Configuring library with XDR support >>>
<<< Configuring library with complex number support >>>
<<< Configuring library with reference counting support >>>
<<< Configuring library with performance logging support >>>
<<< Configuring library example suite support >>>
---------------------------------------------
-- Done configuring core library features ---
---------------------------------------------
---------------------------------------------
----- Configuring for optional packages -----
---------------------------------------------
checking for boostlib >= 1.55.0... yes
<<< Using external boost installation >>>
checking if Howard Hinnant's C++03 unique_ptr implementation can be compiled... yes
<<< Installing Howard Hinnant's unique_ptr implementation >>>
checking /home/hubert/bin/libmesh/petsc-3.6.2/include/petscversion.h usability... yes
checking /home/hubert/bin/libmesh/petsc-3.6.2/include/petscversion.h presence... yes
checking for /home/hubert/bin/libmesh/petsc-3.6.2/include/petscversion.h... yes
grep: /home/hubert/bin/libmesh/petsc-3.6.2/include/petscconf.h: No such file or directory
./configure: line 31345: test: -gt: unary operator expected
<<< Attempting to configure library with MPI from PETSC config... >>>
<<< Found PETSc 3.6.2 installation in /home/hubert/bin/libmesh/petsc-3.6.2 ... >>>
checking whether we can compile a trivial PETSc program... yes
checking for TAO support via PETSc... yes
checking /home/hubert/bin/libmesh/slepc-3.6.2/include/slepcversion.h usability... yes
checking /home/hubert/bin/libmesh/slepc-3.6.2/include/slepcversion.h presence... yes
checking for /home/hubert/bin/libmesh/slepc-3.6.2/include/slepcversion.h... yes
checking /home/hubert/bin/libmesh/slepc-3.6.2/arch-linux2-c-debug/include/slepcconf.h usability... yes
checking /home/hubert/bin/libmesh/slepc-3.6.2/arch-linux2-c-debug/include/slepcconf.h presence... yes
checking for /home/hubert/bin/libmesh/slepc-3.6.2/arch-linux2-c-debug/include/slepcconf.h... yes
<<< Querying SLEPc configuration from /home/hubert/bin/libmesh/slepc-3.6.2/lib/slepc/conf/slepc_variables >>>
checking whether we can compile a trivial SLEPc program... yes
<<< Configuring library with SLEPc version 3.6.2 support >>>
checking /usr/include/tbb/task_scheduler_init.h usability... no
checking /usr/include/tbb/task_scheduler_init.h presence... no
checking for /usr/include/tbb/task_scheduler_init.h... no
checking for the pthreads library -lpthreads... no
checking whether pthreads work without any flags... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking if more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... yes
<<< Configuring library with pthread support >>>
checking whether the compiler supports std::thread... yes
<<< Laspack support is disabled, configure with --disable-strict-lgpl to enable it >>>
<<< The space filling curves partitioner is disabled, configure with --disable-strict-lgpl to enable it >>>
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking for gzopen in -lz... yes
<<< Configuring library with gzstreams support >>>
checking for bzip2... bzip2
checking for bunzip2... bunzip2
<<< Using bzip2/bunzip2 for writing/reading compressed .bz2 files >>>
checking for xz... xz
<<< Using xz for writing/reading compressed .xz files >>>
<<< Testing X11 headers with -I/usr/include >>>
checking X11/Intrinsic.h usability... yes
checking X11/Intrinsic.h presence... yes
checking for X11/Intrinsic.h... yes
checking size of void *... (cached) 8
<<< Configuring library with Tecplot TecIO support >>>
<<< Configuring library with Metis support >>>
checking for thread local storage (TLS) class... __thread
<<< Configuring library with Parmetis support >>>
checking for doxygen... no
<<< Tetgen support is disabled, configure with --disable-strict-lgpl to enable it >>>
<<< Triangle meshing support is disabled, configure with --disable-strict-lgpl to enable it >>>
checking for library containing sqrt... none required
checking for library containing trunc... none required
checking for library containing cos... none required
<<< Configuring library with Qhull version 2012.1 support >>>
<<< Configuring library with GMV support >>>
checking /vtkConfigure.h usability... no
checking /vtkConfigure.h presence... no
checking for /vtkConfigure.h... no
VTK header files not found!
<<< Configuring library without VTK support >>>
Testing EIGEN_INC=/usr/include
checking /usr/include/Eigen/Eigen usability... no
checking /usr/include/Eigen/Eigen presence... no
checking for /usr/include/Eigen/Eigen... no
<<< external Eigen header files not found, using Eigen from ./contrib >>>
checking Eigen/Dense usability... yes
checking Eigen/Dense presence... yes
checking for Eigen/Dense... yes
checking Eigen/Sparse usability... yes
checking Eigen/Sparse presence... yes
checking for Eigen/Sparse... yes
checking for eigen - version >= 3.1.2... yes
<<< Configuring library with Eigen support >>>
checking /usr/include/glpk.h usability... yes
checking /usr/include/glpk.h presence... yes
checking for /usr/include/glpk.h... yes
<<< Configuring library with GLPK version 4.55 support >>>
checking for main in -lglpk... yes
<<< Configuring library with GLPK support >>>
checking for valid nlopt installation... no
<<< Required header files not found, Cap'n Proto support disabled. >>>
checking hdf5.h usability... yes
checking hdf5.h presence... yes
checking for hdf5.h... yes
checking for hdf5 - version >= 1.8.0... yes
checking for H5Fopen in -lhdf5... yes
<<< Configuring library with HDF5 support >>>
<<< Configuring library with NetCDF version 4 support >>>
<<< Configuring library with Exodus version v5.22 support >>>
<<< Configuring library with Exodus Fortran API >>>
<<< Configuring library with Nemesis version v5.22 support >>>
<<< Configuring library with libHilbert support >>>
checking for a sed that does not truncate output... (cached) /bin/sed
checking for bison... no
checking for byacc... no
<<< Configuring library with fparser support (release version) >>>
checking for dlopen support... (cached) yes
<<< Configuring library with fparser JIT compilation support >>>
checking for cppunit-config... no
checking for Cppunit - version >= 1.10.0... no
<<< Configuring library with nanoflann KDtree support >>>
----------------------------------------------
--- Done configuring for optional packages ---
----------------------------------------------
removing duplicate include paths...
removing duplicate libraries...
checking for git... /usr/bin/git
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating include/Makefile
config.status: creating include/libmesh/Makefile
config.status: creating contrib/Makefile
config.status: creating contrib/utils/Makefile
config.status: creating contrib/utils/Make.common
config.status: creating tests/Makefile
config.status: creating tests/base/getpot_test.C
config.status: creating contrib/utils/libmesh.pc
config.status: creating contrib/utils/libmesh-opt.pc
config.status: creating contrib/utils/libmesh-dbg.pc
config.status: creating contrib/utils/libmesh-devel.pc
config.status: creating contrib/utils/libmesh-prof.pc
config.status: creating contrib/utils/libmesh-oprof.pc
config.status: creating doc/Doxyfile
config.status: creating doc/Makefile
config.status: creating doc/html/Makefile
config.status: creating contrib/bin/libmesh-config
config.status: creating contrib/bin/xda2mgf
config.status: creating contrib/bin/create_libmesh_release
config.status: creating doc/dot
config.status: creating tests/run_unit_tests.sh
config.status: creating contrib/boost/include/Makefile
config.status: creating contrib/unique_ptr/Makefile
config.status: creating contrib/laspack/Makefile
config.status: creating contrib/sfcurves/Makefile
config.status: creating contrib/gzstream/Makefile
config.status: creating contrib/tecplot/tecio/Makefile
config.status: creating contrib/tecplot/binary/Makefile
config.status: creating contrib/metis/Makefile
config.status: creating contrib/parmetis/Makefile
config.status: creating contrib/tetgen/Makefile
config.status: creating contrib/triangle/Makefile
config.status: creating contrib/qhull/qhull/Makefile
config.status: creating contrib/gmv/Makefile
config.status: creating contrib/eigen/eigen/Makefile
config.status: creating contrib/capnproto/Makefile
config.status: creating contrib/netcdf/v3/Makefile
config.status: creating contrib/exodusii/v5.09/Makefile
config.status: creating contrib/exodusii/v5.22/exodus/Makefile
config.status: creating contrib/nemesis/v3.09/Makefile
config.status: creating contrib/nemesis/v5.22/nemesis/Makefile
config.status: creating contrib/libHilbert/Makefile
config.status: creating contrib/fparser/Makefile
config.status: creating contrib/fparser/extrasrc/Makefile
config.status: creating contrib/nanoflann/Makefile
config.status: creating examples/introduction/introduction_ex1/Makefile
config.status: creating examples/introduction/introduction_ex2/Makefile
config.status: creating examples/introduction/introduction_ex3/Makefile
config.status: creating examples/introduction/introduction_ex4/Makefile
config.status: creating examples/introduction/introduction_ex5/Makefile
config.status: creating examples/adaptivity/adaptivity_ex1/Makefile
config.status: creating examples/adaptivity/adaptivity_ex2/Makefile
config.status: creating examples/adaptivity/adaptivity_ex3/Makefile
config.status: creating examples/adaptivity/adaptivity_ex4/Makefile
config.status: creating examples/adaptivity/adaptivity_ex5/Makefile
config.status: creating examples/adjoints/adjoints_ex1/Makefile
config.status: creating examples/adjoints/adjoints_ex2/Makefile
config.status: creating examples/adjoints/adjoints_ex3/Makefile
config.status: creating examples/adjoints/adjoints_ex4/Makefile
config.status: creating examples/adjoints/adjoints_ex5/Makefile
config.status: creating examples/eigenproblems/eigenproblems_ex1/Makefile
config.status: creating examples/eigenproblems/eigenproblems_ex2/Makefile
config.status: creating examples/eigenproblems/eigenproblems_ex3/Makefile
config.status: creating examples/fem_system/fem_system_ex1/Makefile
config.status: creating examples/fem_system/fem_system_ex2/Makefile
config.status: creating examples/fem_system/fem_system_ex3/Makefile
config.status: creating examples/fem_system/fem_system_ex4/Makefile
config.status: creating examples/solution_transfer/solution_transfer_ex1/Makefile
config.status: creating examples/miscellaneous/miscellaneous_ex1/Makefile
config.status: creating examples/miscellaneous/miscellaneous_ex2/Makefile
config.status: creating examples/miscellaneous/miscellaneous_ex3/Makefile
config.status: creating examples/miscellaneous/miscellaneous_ex4/Makefile
config.status: creating examples/miscellaneous/miscellaneous_ex5/Makefile
config.status: creating examples/miscellaneous/miscellaneous_ex6/Makefile
config.status: creating examples/miscellaneous/miscellaneous_ex7/Makefile
config.status: creating examples/miscellaneous/miscellaneous_ex8/Makefile
config.status: creating examples/miscellaneous/miscellaneous_ex9/Makefile
config.status: creating examples/miscellaneous/miscellaneous_ex10/Makefile
config.status: creating examples/miscellaneous/miscellaneous_ex11/Makefile
config.status: creating examples/optimization/optimization_ex1/Makefile
config.status: creating examples/optimization/optimization_ex2/Makefile
config.status: creating examples/subdomains/subdomains_ex1/Makefile
config.status: creating examples/subdomains/subdomains_ex2/Makefile
config.status: creating examples/subdomains/subdomains_ex3/Makefile
config.status: creating examples/systems_of_equations/systems_of_equations_ex1/Makefile
config.status: creating examples/systems_of_equations/systems_of_equations_ex2/Makefile
config.status: creating examples/systems_of_equations/systems_of_equations_ex3/Makefile
config.status: creating examples/systems_of_equations/systems_of_equations_ex4/Makefile
config.status: creating examples/systems_of_equations/systems_of_equations_ex5/Makefile
config.status: creating examples/systems_of_equations/systems_of_equations_ex6/Makefile
config.status: creating examples/systems_of_equations/systems_of_equations_ex7/Makefile
config.status: creating examples/systems_of_equations/systems_of_equations_ex8/Makefile
config.status: creating examples/reduced_basis/reduced_basis_ex1/Makefile
config.status: creating examples/reduced_basis/reduced_basis_ex2/Makefile
config.status: creating examples/reduced_basis/reduced_basis_ex3/Makefile
config.status: creating examples/reduced_basis/reduced_basis_ex4/Makefile
config.status: creating examples/reduced_basis/reduced_basis_ex5/Makefile
config.status: creating examples/reduced_basis/reduced_basis_ex6/Makefile
config.status: creating examples/reduced_basis/reduced_basis_ex7/Makefile
config.status: creating examples/transient/transient_ex1/Makefile
config.status: creating examples/transient/transient_ex2/Makefile
config.status: creating examples/vector_fe/vector_fe_ex1/Makefile
config.status: creating examples/vector_fe/vector_fe_ex2/Makefile
config.status: creating examples/vector_fe/vector_fe_ex3/Makefile
config.status: creating examples/vector_fe/vector_fe_ex4/Makefile
config.status: creating examples/Makefile
config.status: creating include/libmesh_config.h.tmp
config.status: executing include/libmesh_config.h commands
config.status: creating include/libmesh_config.h - prefix LIBMESH for include/libmesh_config.h.tmp defines
config.status: executing depfiles commands
config.status: executing libtool commands
=== configuring in contrib/netcdf/v4 (/home/hubert/bin/libmesh/libmesh/contrib/netcdf/v4)
configure: running /bin/sh ./configure --disable-option-checking '--prefix=/usr/local' '--enable-complex' '--enable-slepc' '--enable-petsc' '--disable-periodic' '--enable-default-comm-world' '--enable-perflog' '--enable-qhull' '--enable-vtk' '--enable-ifem' 'PETSC_DIR=/home/hubert/bin/libmesh/petsc-3.6.2' 'PETSC_ARCH=arch-linux2-c-debug' 'SLEPC_DIR=/home/hubert/bin/libmesh/slepc-3.6.2' 'VTK_DIR=/usr/lib64/vtk-6.1' '--disable-testsets' 'CXX=mpicxx' 'CC=mpicc' 'F77=mpif77' 'FC=mpif90' 'CPPFLAGS= ' 'LIBS=-L/lib -lhdf5 -Wl,-rpath,/lib -ldl ' --cache-file=/dev/null --srcdir=.
configure: netCDF 4.3.1
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether make supports nested variables... (cached) yes
checking whether to enable maintainer-specific portions of Makefiles... no
configure: checking user options
checking whether a win32 DLL is desired... no
checking whether a NCIO_MINBLOCKSIZE was specified... 256
checking if fsync support is enabled... no
checking whether extra valgrind tests should be run... no
checking whether we should try to build netCDF-4... yes
checking do we require hdf5 dynamic-loading support... xno
checking whether reading of HDF4 SD files is to be enabled... no
checking whether to fetch some sample HDF4 files from Unidata ftp site to test HDF4 reading (requires wget)... no
checking whether parallel I/O for classic and 64-bit offset files using parallel-netcdf is to be enabled... no
checking whether extra example tests should be run... no
checking whether parallel IO tests should be run... no
checking whether a default chunk size in bytes was specified... 4194304
checking whether a maximum per-variable cache size for HDF5 was specified... 67108864
checking whether a number of chunks for the default per-variable cache was specified... 10
checking whether a default file cache size for HDF5 was specified... 4194304
checking whether a default file cache maximum number of elements for HDF5 was specified... 1009
checking whether a default cache preemption for HDF5 was specified... 0.75
checking whether netCDF-4 logging is enabled... no
checking whether cdmremote client is to be built... no
checking whether DAP client is to be built... yes
checking for style of include used by make... GNU
checking for gcc... mpicc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether mpicc accepts -g... yes
checking for mpicc option to accept ISO C89... none needed
checking dependency style of mpicc... gcc3
checking for curl_easy_setopt in -lcurl... yes
checking for library containing curl_easy_setopt... -lcurl
checking whether dap remote testing should be enabled (default off)... no
checking whether netcdf4 group names should be enabled (default on)... yes
checking whether the time-consuming dap tests should be enabled (default off)... no
checking whether netCDF extra tests should be run (developers only)... no
checking whether FFIO will be used... no
checking whether examples should be built... yes
checking whether v2 netCDF API should be built... yes
checking whether the ncgen/ncdump/nccopy should be built... yes
checking whether test should be built and run... no
checking whether large file (> 2GB) tests should be run... no
checking whether benchmaks should be run (experimental)... no
checking whether extreme numbers should be used in tests... yes
checking where to put large temp files if large file tests are run... .
configure: finding C compiler
checking for gcc... (cached) mpicc
checking whether we are using the GNU C compiler... (cached) yes
checking whether mpicc accepts -g... (cached) yes
checking for mpicc option to accept ISO C89... (cached) none needed
checking dependency style of mpicc... (cached) gcc3
checking whether mpicc and cc understand -c and -o together... yes
checking for an ANSI C-conforming const... yes
checking whether a CURLOPT_KEYPASSWD is defined... yes
configure: setting up libtool
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by mpicc... /usr/x86_64-pc-linux-gnu/bin/ld
checking if the linker (/usr/x86_64-pc-linux-gnu/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/x86_64-pc-linux-gnu/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from mpicc object... ok
checking for sysroot... no
checking for a working dd... /bin/dd
checking how to truncate binary pipes... /bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking how to run the C preprocessor... mpicc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if mpicc supports -fno-rtti -fno-exceptions... no
checking for mpicc option to produce PIC... -fPIC -DPIC
checking if mpicc PIC flag -fPIC -DPIC works... yes
checking if mpicc static flag -static works... no
checking if mpicc supports -c -o file.o... yes
checking if mpicc supports -c -o file.o... (cached) yes
checking whether the mpicc linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
configure: finding other utilities
checking for doxygen... no
configure: WARNING: Doxygen not found - documentation will not be built
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
configure: displaying some results
checking CPPFLAGS...
checking CC CFLAGS... mpicc -g -O2
checking type mpicc... mpicc is /usr/bin/mpicc
checking CXX... mpicxx
checking CXXFLAGS...
checking type mpicxx... mpicxx is /usr/bin/mpicxx
checking FC... mpif90
checking FFLAGS...
checking type mpif90... mpif90 is /usr/bin/mpif90
checking F90... unset
checking AR... ar
checking AR_FLAGS... cru
checking type ar... ar is /usr/bin/ar
checking NM... /usr/bin/nm -B
checking NMFLAGS...
configure: checking types, headers, and functions
checking for stdlib.h... (cached) yes
checking for sys/types.h... (cached) yes
checking sys/param.h usability... yes
checking sys/param.h presence... yes
checking for sys/param.h... yes
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for ANSI C header files... (cached) yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking whether time.h and sys/time.h may both be included... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking stdio.h usability... yes
checking stdio.h presence... yes
checking for stdio.h... yes
checking stdarg.h usability... yes
checking stdarg.h presence... yes
checking for stdarg.h... yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking ctype.h usability... yes
checking ctype.h presence... yes
checking for ctype.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/stat.h... (cached) yes
checking getopt.h usability... yes
checking getopt.h presence... yes
checking for getopt.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for vprintf... yes
checking for _doprnt... no
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for strlcat... no
checking for strerror... yes
checking for snprintf... yes
checking for strchr... yes
checking for strrchr... yes
checking for strcat... yes
checking for strcpy... yes
checking for strdup... yes
checking for strcasecmp... yes
checking for strtod... yes
checking for strtoll... yes
checking for strtoull... yes
checking for strstr... yes
checking for mkstemp... yes
checking for rand... yes
checking for getrlimit... yes
checking for gettimeofday... yes
checking for fsync... yes
checking for MPI_Comm_f2c... yes
checking whether in-memory files are enabled... configure: --enable-dap requires --enable-diskless
yes
checking for memmove... yes
checking for getpagesize... yes
checking for sysconf... yes
checking whether mmap is enabled for in-memory files... no
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/param.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... yes
checking for mremap... yes
checking for size_t... yes
checking for working alloca.h... yes
checking for alloca... yes
checking whether isnan is declared... yes
checking whether isinf is declared... yes
checking whether isfinite is declared... yes
checking whether signbit is declared... yes
checking for struct stat.st_blksize... yes
checking for IEEE floating point format... yes
checking for size_t... (cached) yes
checking for off_t... yes
checking for ssize_t... yes
checking for ptrdiff_t... yes
checking for uchar... no
checking for longlong... no
checking whether char is unsigned... no
checking whether byte ordering is bigendian... no
checking size of short... 2
checking size of int... 4
checking size of long... 8
checking size of long long... 8
checking size of float... 4
checking size of double... 8
checking size of off_t... 8
checking size of size_t... 8
checking for library containing deflate... -lz
checking for floor in -lm... yes
checking for library containing H5Fflush... none required
checking for library containing H5DSis_scale... -lhdf5_hl
checking hdf5.h usability... yes
checking hdf5.h presence... yes
checking for hdf5.h... yes
checking for H5Pget_fapl_mpiposix... no
checking for H5Pget_fapl_mpio... no
checking for H5Pset_deflate... yes
checking for H5Z_SZIP... no
checking whether parallel I/O features are to be included... no
checking for unsigned long long int... yes
checking for long long int... yes
checking for unsigned long long int... (cached) yes
checking what to call the output of the ftpbin target... binary-netcdf-4.3.1.tar mpif90 mpicxx
checking value of LIBS... -lhdf5_hl -lm -lz -lcurl -L/lib -lhdf5 -Wl,-rpath,/lib -ldl
configure: generating header files and makefiles
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating nc-config
config.status: creating netcdf.pc
config.status: creating include/Makefile
config.status: creating h5_test/Makefile
config.status: creating man4/Makefile
config.status: creating man4/images/Makefile
config.status: creating libsrc/Makefile
config.status: creating libsrc4/Makefile
config.status: creating libsrc5/Makefile
config.status: creating nctest/Makefile
config.status: creating nc_test4/Makefile
config.status: creating nc_test/Makefile
config.status: creating ncdump/Makefile
config.status: creating ncgen3/Makefile
config.status: creating ncgen/Makefile
config.status: creating examples/Makefile
config.status: creating examples/C/Makefile
config.status: creating examples/CDL/Makefile
config.status: creating oc2/Makefile
config.status: creating libdap2/Makefile
config.status: creating libdispatch/Makefile
config.status: creating liblib/Makefile
config.status: creating ncdump/cdl4/Makefile
config.status: creating ncdump/expected4/Makefile
config.status: creating ncdap_test/Makefile
config.status: creating ncdap_test/testdata3/Makefile
config.status: creating ncdap_test/expected3/Makefile
config.status: creating ncdap_test/expected4/Makefile
config.status: creating ncdap_test/expectremote3/Makefile
config.status: creating ncdap_test/expectremote4/Makefile
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands
config.status: executing libtool commands
----------------------------------- SUMMARY -----------------------------------
Package version.................... : libmesh-1.0.0-pre
C++ compiler type.................. : gcc4.9
C++ compiler....................... : mpicxx
C compiler......................... : mpicc
Fortran compiler................... : mpif90
Build Methods...................... : dbg devel opt
CPPFLAGS...(dbg)................... : -DDEBUG -D_GLIBCXX_DEBUG -D_GLIBCXX_DEBUG_PEDANTIC
CXXFLAGS...(dbg)................... : -std=gnu++11 -O0 -felide-constructors -g -pedantic -W -Wall -Wextra -Wno-long-long -Wunused -Wpointer-arith -Wformat -Wparentheses -Woverloaded-virtual -fopenmp -std=gnu++11
CFLAGS.....(dbg)................... : -g -Wimplicit -fopenmp
CPPFLAGS...(devel)................. :
CXXFLAGS...(devel)................. : -std=gnu++11 -O2 -felide-constructors -g -pedantic -W -Wall -Wextra -Wno-long-long -Wunused -Wpointer-arith -Wformat -Wparentheses -Wuninitialized -funroll-loops -fstrict-aliasing -Woverloaded-virtual -Wdisabled-optimization -fopenmp -std=gnu++11
CFLAGS.....(devel)................. : -O2 -g -Wimplicit -funroll-loops -fstrict-aliasing -fopenmp
CPPFLAGS...(opt)................... : -DNDEBUG
CXXFLAGS...(opt)................... : -std=gnu++11 -O2 -felide-constructors -funroll-loops -fstrict-aliasing -Wdisabled-optimization -fopenmp -std=gnu++11
CFLAGS.....(opt)................... : -O2 -funroll-loops -fstrict-aliasing -fopenmp
Install dir........................ : /usr/local
Build user......................... : hubert
Build host......................... : hubert-pc
Build architecture................. : x86_64-unknown-linux-gnu
Git revision....................... : 8369d8a5811f6ca052bacdea0e6bd59ad838167e
Library Features:
library warnings................. : yes
adaptive mesh refinement......... : yes
blocked matrix/vector storage.... : no
complex variables................ : yes
example suite.................... : yes
ghosted vectors.................. : yes
high-order shape functions....... : yes
unique-id support................ : no
id size (boundaries)............. : 2 bytes
id size (dofs)................... : 4 bytes
id size (processors)............. : 2 bytes
id size (subdomains)............. : 2 bytes
infinite elements................ : yes
Dirichlet constraints............ : yes
node constraints................. : no
parallel mesh.................... : no
performance logging.............. : yes
periodic boundary conditions..... : no
reference counting............... : yes
shape function 2nd derivatives... : yes
stack trace files................ : no
track node valence............... : yes
variational smoother............. : yes
xdr binary I/O................... : yes
providing libMesh::CommWorld..... : yes ***LEGACY FEATURE***
Optional Packages:
boost............................ : yes
capnproto........................ : no
cppunit.......................... : no
curl............................. : no
eigen............................ : yes
exodus........................... : yes
version....................... : v5.22
fparser.......................... : yes
build from version............ : release
glpk............................. : yes
gmv.............................. : yes
gzstream......................... : yes
hdf5............................. : yes
laspack.......................... : no
libhilbert....................... : yes
metis............................ : yes
mpi.............................. : yes
nanoflann........................ : yes
nemesis.......................... : yes
version....................... : v5.22
netcdf........................... : yes
version....................... : 4
nlopt............................ : no
openmp........................... : yes
parmetis......................... : yes
petsc............................ : yes
version....................... : 3.6.2
pthreads......................... : yes
qhull............................ : yes
sfcurves......................... : no
slepc............................ : yes
version....................... : 3.6.2
tbb.............................. : no
c++ threads...................... : yes
flavor........................ : std::thread
c++ rtti ........................ : yes
tecio............................ : yes
tecplot...(vendor binaries)...... : no
tetgen........................... : no
triangle......................... : no
trilinos......................... : yes
AztecOO....................... :
NOX........................... :
ML............................ :
Tpetra........................ :
DTK........................... :
Ifpack........................ :
EpetraExt..................... :
vtk.............................. : no
libmesh_optional_INCLUDES........ : -I/usr/include -I/home/hubert/bin/libmesh/slepc-3.6.2/include -I/home/hubert/bin/libmesh/slepc-3.6.2/arch-linux2-c-debug/include -I/home/hubert/bin/libmesh/petsc-3.6.2/include -I/home/hubert/bin/libmesh/petsc-3.6.2/arch-linux2-c-debug/include
libmesh_optional_LIBS............ : -L/lib -lhdf5 -Wl,-rpath,/lib -L/usr/lib -lglpk -lz -Wl,-rpath,/home/hubert/bin/libmesh/slepc-3.6.2/arch-linux2-c-debug/lib -L/home/hubert/bin/libmesh/slepc-3.6.2/arch-linux2-c-debug/lib -lslepc -L/home/hubert/bin/libmesh/petsc-3.6.2/arch-linux2-c-debug/lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/4.9.3 -L/usr/x86_64-pc-linux-gnu/lib -lpetsc -lf2clapack -lf2cblas -lpthread -lX11 -lhwloc -lssl -lcrypto -lmpifort -lgfortran -lquadmath -lm -lmpicxx -lstdc++ -Wl,-rpath,/usr/lib/gcc/x86_64-pc-linux-gnu/4.9.3 -Wl,-rpath,/usr/x86_64-pc-linux-gnu/lib -Wl,-rpath,/home/hubert/bin/libmesh/petsc-3.6.2/arch-linux2-c-debug/lib -lmpi -lgcc_s -ldl
-------------------------------------------------------------------------------
Configure complete, now type 'make' and then 'make install'.
---------------------------------------------
--------- Done Configuring libMesh ----------
---------------------------------------------