-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathfeenox-clone-configure-make-check-install.cast
1007 lines (1007 loc) · 199 KB
/
feenox-clone-configure-make-check-install.cast
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
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{"version": 2, "width": 128, "height": 32, "timestamp": 1642784260, "env": {"SHELL": "/bin/bash", "TERM": "xterm-256color"}}
[0.02788, "o", "\u001b[?2004h\u001b]0;gtheler@tom: ~\u0007\u001b[01;30mgtheler\u001b[00m@\u001b[01;33mtom\u001b[00m:~$ "]
[1.476314, "o", "g"]
[1.60476, "o", "i"]
[1.701139, "o", "t"]
[1.797747, "o", " "]
[1.93273, "o", "c"]
[2.053226, "o", "l"]
[2.244135, "o", "o"]
[2.317713, "o", "n"]
[2.405612, "o", "e"]
[2.508362, "o", " "]
[2.708375, "o", "h"]
[2.780656, "o", "t"]
[2.955989, "o", "t"]
[3.046087, "o", "p"]
[3.524218, "o", "s"]
[3.772571, "o", ":"]
[4.236764, "o", "/"]
[4.388376, "o", "/"]
[4.565546, "o", "g"]
[4.804661, "o", "i"]
[4.90291, "o", "t"]
[5.013056, "o", "h"]
[5.085233, "o", "u"]
[5.220485, "o", "b"]
[5.381064, "o", "."]
[5.517672, "o", "c"]
[5.621343, "o", "o"]
[5.692433, "o", "m"]
[6.236654, "o", "/"]
[7.180726, "o", "s"]
[7.404119, "o", "e"]
[7.518434, "o", "a"]
[7.638535, "o", "m"]
[7.709325, "o", "p"]
[7.756753, "o", "l"]
[7.804841, "o", "e"]
[7.9199, "o", "x"]
[8.276509, "o", "/"]
[8.412403, "o", "f"]
[8.469043, "o", "e"]
[8.685679, "o", "e"]
[8.813851, "o", "n"]
[8.875884, "o", "o"]
[9.020728, "o", "x"]
[9.165293, "o", "\r\n\u001b[?2004l\r"]
[9.170069, "o", "Cloning into 'feenox'...\r\n"]
[10.458594, "o", "remote: Enumerating objects: 6460, done.\u001b[K\r\n"]
[10.458825, "o", "remote: Counting objects: 0% (1/3951)\u001b[K\rremote: Counting objects: 1% (40/3951)\u001b[K\rremote: Counting objects: 2% (80/3951)\u001b[K\r"]
[10.458941, "o", "remote: Counting objects: 3% (119/3951)\u001b[K\rremote: Counting objects: 4% (159/3951)\u001b[K\r"]
[10.466774, "o", "remote: Counting objects: 5% (198/3951)\u001b[K\rremote: Counting objects: 6% (238/3951)\u001b[K\r"]
[10.467172, "o", "remote: Counting objects: 7% (277/3951)\u001b[K\rremote: Counting objects: 8% (317/3951)\u001b[K\rremote: Counting objects: 9% (356/3951)\u001b[K\rremote: Counting objects: 10% (396/3951)\u001b[K\rremote: Counting objects: 11% (435/3951)\u001b[K\rremote: Counting objects: 12% (475/3951)\u001b[K\rremote: Counting objects: 13% (514/3951)\u001b[K\r"]
[10.467411, "o", "remote: Counting objects: 14% (554/3951)\u001b[K\rremote: Counting objects: 15% (593/3951)\u001b[K\rremote: Counting objects: 16% (633/3951)\u001b[K\r"]
[10.470914, "o", "remote: Counting objects: 17% (672/3951)\u001b[K\r"]
[10.475937, "o", "remote: Counting objects: 18% (712/3951)\u001b[K\rremote: Counting objects: 19% (751/3951)\u001b[K\rremote: Counting objects: 20% (791/3951)\u001b[K\r"]
[10.476187, "o", "remote: Counting objects: 21% (830/3951)\u001b[K\rremote: Counting objects: 22% (870/3951)\u001b[K\rremote: Counting objects: 23% (909/3951)\u001b[K\rremote: Counting objects: 24% (949/3951)\u001b[K\r"]
[10.476427, "o", "remote: Counting objects: 25% (988/3951)\u001b[K\rremote: Counting objects: 26% (1028/3951)\u001b[K\r"]
[10.530023, "o", "remote: Counting objects: 27% (1067/3951)\u001b[K\rremote: Counting objects: 28% (1107/3951)\u001b[K\rremote: Counting objects: 29% (1146/3951)\u001b[K\rremote: Counting objects: 30% (1186/3951)\u001b[K\rremote: Counting objects: 31% (1225/3951)\u001b[K\rremote: Counting objects: 32% (1265/3951)\u001b[K\rremote: Counting objects: 33% (1304/3951)\u001b[K\rremote: Counting objects: 34% (1344/3951)\u001b[K\r"]
[10.530577, "o", "remote: Counting objects: 35% (1383/3951)\u001b[K\rremote: Counting objects: 36% (1423/3951)\u001b[K\rremote: Counting objects: 37% (1462/3951)\u001b[K\rremote: Counting objects: 38% (1502/3951)\u001b[K\rremote: Counting objects: 39% (1541/3951)\u001b[K\rremote: Counting objects: 40% (1581/3951)\u001b[K\rremote: Counting objects: 41% (1620/3951)\u001b[K\rremote: Counting objects: 42% (1660/3951)\u001b[K\rremote: Counting objects: 43% (1699/3951)\u001b[K\rremote: Counting objects: 44% (1739/3951)\u001b[K\rremote: Counting objects: 45% (1778/3951)\u001b[K\rremote: Counting objects: 46% (1818/3951)\u001b[K\rremote: Counting objects: 47% (1857/3951)\u001b[K\rremote: Counting objects: 48% (1897/3951)\u001b[K\rremote: Counting objects: 49% (1936/3951)\u001b[K\rremote: Counting objects: 50% (1976/3951)\u001b[K\rremote: Counting objects: 51% (2016/3951)\u001b[K\rremote: Counting objects: 52% (2055/3951)\u001b[K\rremote: Counting objects: 53% (2095/3951)\u001b[K\rremote: Counting objects: 54% (2134/3951)\u001b[K\rremote: Counting objects: 55% (2174/3951)\u001b[K\rremote: Counting objects: 56% (2213/3951)\u001b[K\rremote: Coun"]
[10.531267, "o", "ting objects: 57% (2253/3951)\u001b[K\rremote: Counting objects: 58% (2292/3951)\u001b[K\rremote: Counting objects: 59% (2332/3951)\u001b[K\rremote: Counting objects: 60% (2371/3951)\u001b[K\rremote: Counting objects: 61% (2411/3951)\u001b[K\rremote: Counting objects: 62% (2450/3951)\u001b[K\rremote: Counting objects: 63% (2490/3951)\u001b[K\rremote: Counting objects: 64% (2529/3951)\u001b[K\rremote: Counting objects: 65% (2569/3951)\u001b[K\rremote: Counting objects: 66% (2608/3951)\u001b[K\rremote: Counting objects: 67% (2648/3951)\u001b[K\rremote: Counting objects: 68% (2687/3951)\u001b[K\rremote: Counting objects: 69% (2727/3951)\u001b[K\rremote: Counting objects: 70% (2766/3951)\u001b[K\rremote: Counting objects: 71% (2806/3951)\u001b[K\rremote: Counting objects: 72% (2845/3951)\u001b[K\rremote: Counting objects: 73% (2885/3951)\u001b[K\rremote: Counting objects: 74% (2924/3951)\u001b[K\rremote: Counting objects: 75% (2964/3951)\u001b[K\rremote: Counting objects: 76% (3003/3951)\u001b[K\rremote: Counting objects: 77% (3043/3951)\u001b[K\rremote: Counting objects: 78% (3082/3951)\u001b[K\rremote: Counting objects"]
[10.531673, "o", ": 79% (3122/3951)\u001b[K\rremote: Counting objects: 80% (3161/3951)\u001b[K\rremote: Counting objects: 81% (3201/3951)\u001b[K\rremote: Counting objects: 82% (3240/3951)\u001b[K\rremote: Counting objects: 83% (3280/3951)\u001b[K\rremote: Counting objects: 84% (3319/3951)\u001b[K\rremote: Counting objects: 85% (3359/3951)\u001b[K\rremote: Counting objects: 86% (3398/3951)\u001b[K\rremote: Counting objects: 87% (3438/3951)\u001b[K\rremote: Counting objects: 88% (3477/3951)\u001b[K\rremote: Counting objects: 89% (3517/3951)\u001b[K\rremote: Counting objects: 90% (3556/3951)\u001b[K\rremote: Counting objects: 91% (3596/3951)\u001b[K\rremote: Counting objects: 92% (3635/3951)\u001b[K\rremote: Counting objects: 93% (3675/3951)\u001b[K\rremote: Counting objects: 94% (3714/3951)\u001b[K\rremote: Counting objects: 95% (3754/3951)\u001b[K\rremote: Counting objects: 96% (3793/3951)\u001b[K\rremote: Counting objects: 97% (3833/3951)\u001b[K\rremote: Counting objects: 98% (3872/3951)\u001b[K\rremote: Counting objects: 99% (3912/3951)\u001b[K\rremote: Counting objects: 100% (3951/3951)\u001b[K\rremote: Counting objects: 100% (3951"]
[10.532023, "o", "/3951), done.\u001b[K\r\nremote: Compressing objects: 0% (1/2864)\u001b[K\rremote: Compressing objects: 1% (29/2864)\u001b[K\rremote: Compressing objects: 2% (58/2864)\u001b[K\r"]
[10.532696, "o", "remote: Compressing objects: 3% (86/2864)\u001b[K\r"]
[10.537847, "o", "remote: Compressing objects: 4% (115/2864)\u001b[K\r"]
[10.541016, "o", "remote: Compressing objects: 5% (144/2864)\u001b[K\r"]
[10.548569, "o", "remote: Compressing objects: 6% (172/2864)\u001b[K\rremote: Compressing objects: 7% (201/2864)\u001b[K\r"]
[10.639631, "o", "remote: Compressing objects: 8% (230/2864)\u001b[K\r"]
[10.741502, "o", "remote: Compressing objects: 9% (258/2864)\u001b[K\r"]
[10.993075, "o", "remote: Compressing objects: 10% (287/2864)\u001b[K\r"]
[11.004122, "o", "remote: Compressing objects: 11% (316/2864)\u001b[K\rremote: Compressing objects: 12% (344/2864)\u001b[K\r"]
[11.055748, "o", "remote: Compressing objects: 13% (373/2864)\u001b[K\r"]
[11.058087, "o", "remote: Compressing objects: 14% (401/2864)\u001b[K\r"]
[11.058533, "o", "remote: Compressing objects: 15% (430/2864)\u001b[K\r"]
[11.061777, "o", "remote: Compressing objects: 16% (459/2864)\u001b[K\r"]
[11.063245, "o", "remote: Compressing objects: 17% (487/2864)\u001b[K\r"]
[11.063767, "o", "remote: Compressing objects: 18% (516/2864)\u001b[K\r"]
[11.066205, "o", "remote: Compressing objects: 19% (545/2864)\u001b[K\r"]
[11.068151, "o", "remote: Compressing objects: 20% (573/2864)\u001b[K\r"]
[11.068878, "o", "remote: Compressing objects: 21% (602/2864)\u001b[K\r"]
[11.069662, "o", "remote: Compressing objects: 22% (631/2864)\u001b[K\r"]
[11.070073, "o", "remote: Compressing objects: 23% (659/2864)\u001b[K\r"]
[11.072371, "o", "remote: Compressing objects: 24% (688/2864)\u001b[K\rremote: Compressing objects: 25% (716/2864)\u001b[K\r"]
[11.074174, "o", "remote: Compressing objects: 26% (745/2864)\u001b[K\rremote: Compressing objects: 27% (774/2864)\u001b[K\r"]
[11.075355, "o", "remote: Compressing objects: 28% (802/2864)\u001b[K\r"]
[11.078036, "o", "remote: Compressing objects: 29% (831/2864)\u001b[K\r"]
[11.082978, "o", "remote: Compressing objects: 30% (860/2864)\u001b[K\r"]
[11.098785, "o", "remote: Compressing objects: 31% (888/2864)\u001b[K\r"]
[11.10596, "o", "remote: Compressing objects: 32% (917/2864)\u001b[K\r"]
[11.113623, "o", "remote: Compressing objects: 33% (946/2864)\u001b[K\rremote: Compressing objects: 34% (974/2864)\u001b[K\r"]
[11.114832, "o", "remote: Compressing objects: 35% (1003/2864)\u001b[K\r"]
[11.119495, "o", "remote: Compressing objects: 36% (1032/2864)\u001b[K\r"]
[11.126844, "o", "remote: Compressing objects: 37% (1060/2864)\u001b[K\r"]
[11.138232, "o", "remote: Compressing objects: 38% (1089/2864)\u001b[K\r"]
[11.15829, "o", "remote: Compressing objects: 39% (1117/2864)\u001b[K\r"]
[11.159708, "o", "remote: Compressing objects: 40% (1146/2864)\u001b[K\r"]
[11.162524, "o", "remote: Compressing objects: 41% (1175/2864)\u001b[K\r"]
[11.169676, "o", "remote: Compressing objects: 42% (1203/2864)\u001b[K\r"]
[11.193713, "o", "remote: Compressing objects: 43% (1232/2864)\u001b[K\r"]
[11.194192, "o", "remote: Compressing objects: 44% (1261/2864)\u001b[K\r"]
[11.197969, "o", "remote: Compressing objects: 45% (1289/2864)\u001b[K\r"]
[11.208751, "o", "remote: Compressing objects: 46% (1318/2864)\u001b[K\r"]
[11.250608, "o", "remote: Compressing objects: 47% (1347/2864)\u001b[K\r"]
[11.26611, "o", "remote: Compressing objects: 48% (1375/2864)\u001b[K\r"]
[11.269516, "o", "remote: Compressing objects: 49% (1404/2864)\u001b[K\r"]
[11.281202, "o", "remote: Compressing objects: 50% (1432/2864)\u001b[K\r"]
[11.287263, "o", "remote: Compressing objects: 51% (1461/2864)\u001b[K\r"]
[11.296108, "o", "remote: Compressing objects: 52% (1490/2864)\u001b[K\r"]
[11.304899, "o", "remote: Compressing objects: 53% (1518/2864)\u001b[K\r"]
[11.322711, "o", "remote: Compressing objects: 54% (1547/2864)\u001b[K\r"]
[11.325677, "o", "remote: Compressing objects: 55% (1576/2864)\u001b[K\r"]
[11.327819, "o", "remote: Compressing objects: 56% (1604/2864)\u001b[K\r"]
[11.330277, "o", "remote: Compressing objects: 57% (1633/2864)\u001b[K\r"]
[11.332204, "o", "remote: Compressing objects: 58% (1662/2864)\u001b[K\r"]
[11.334964, "o", "remote: Compressing objects: 59% (1690/2864)\u001b[K\r"]
[11.336587, "o", "remote: Compressing objects: 60% (1719/2864)\u001b[K\r"]
[11.336991, "o", "remote: Compressing objects: 61% (1748/2864)\u001b[K\r"]
[11.337448, "o", "remote: Compressing objects: 62% (1776/2864)\u001b[K\r"]
[11.337678, "o", "remote: Compressing objects: 63% (1805/2864)\u001b[K\r"]
[11.337947, "o", "remote: Compressing objects: 64% (1833/2864)\u001b[K\r"]
[11.338301, "o", "remote: Compressing objects: 65% (1862/2864)\u001b[K\r"]
[11.340134, "o", "remote: Compressing objects: 66% (1891/2864)\u001b[K\rremote: Compressing objects: 67% (1919/2864)\u001b[K\r"]
[11.340615, "o", "remote: Compressing objects: 68% (1948/2864)\u001b[K\r"]
[11.341595, "o", "remote: Compressing objects: 69% (1977/2864)\u001b[K\r"]
[11.342034, "o", "remote: Compressing objects: 70% (2005/2864)\u001b[K\r"]
[11.345743, "o", "remote: Compressing objects: 71% (2034/2864)\u001b[K\r"]
[11.346285, "o", "remote: Compressing objects: 72% (2063/2864)\u001b[K\rremote: Compressing objects: 73% (2091/2864)\u001b[K\rremote: Compressing objects: 74% (2120/2864)\u001b[K\rremote: Compressing objects: 75% (2148/2864)\u001b[K\rremote: Compressing objects: 76% (2177/2864)\u001b[K\r"]
[11.356573, "o", "remote: Compressing objects: 77% (2206/2864)\u001b[K\rremote: Compressing objects: 78% (2234/2864)\u001b[K\rremote: Compressing objects: 79% (2263/2864)\u001b[K\rremote: Compressing objects: 80% (2292/2864)\u001b[K\rremote: Compressing objects: 81% (2320/2864)\u001b[K\r"]
[11.357592, "o", "remote: Compressing objects: 82% (2349/2864)\u001b[K\rremote: Compressing objects: 83% (2378/2864)\u001b[K\r"]
[11.36337, "o", "remote: Compressing objects: 84% (2406/2864)\u001b[K\rremote: Compressing objects: 85% (2435/2864)\u001b[K\rremote: Compressing objects: 86% (2464/2864)\u001b[K\rremote: Compressing objects: 87% (2492/2864)\u001b[K\rremote: Compressing objects: 88% (2521/2864)\u001b[K\rremote: Compressing objects: 89% (2549/2864)\u001b[K\r"]
[11.364151, "o", "remote: Compressing objects: 90% (2578/2864)\u001b[K\rremote: Compressing objects: 91% (2607/2864)\u001b[K\r"]
[11.368201, "o", "remote: Compressing objects: 92% (2635/2864)\u001b[K\rremote: Compressing objects: 93% (2664/2864)\u001b[K\rremote: Compressing objects: 94% (2693/2864)\u001b[K\rremote: Compressing objects: 95% (2721/2864)\u001b[K\rremote: Compressing objects: 96% (2750/2864)\u001b[K\rremote: Compressing objects: 97% (2779/2864)\u001b[K\rremote: Compressing objects: 98% (2807/2864)\u001b[K\rremote: Compressing objects: 99% (2836/2864)\u001b[K\r"]
[11.369544, "o", "remote: Compressing objects: 100% (2864/2864)\u001b[K\rremote: Compressing objects: 100% (2864/2864), done.\u001b[K\r\n"]
[11.371055, "o", "Receiving objects: 0% (1/6460)\r"]
[11.475829, "o", "Receiving objects: 1% (65/6460)\r"]
[11.481483, "o", "Receiving objects: 2% (130/6460)\r"]
[11.55223, "o", "Receiving objects: 3% (194/6460)\r"]
[11.556552, "o", "Receiving objects: 4% (259/6460)\r"]
[11.560153, "o", "Receiving objects: 5% (323/6460)\r"]
[11.565363, "o", "Receiving objects: 6% (388/6460)\r"]
[11.57239, "o", "Receiving objects: 7% (453/6460)\r"]
[11.598555, "o", "Receiving objects: 8% (517/6460)\r"]
[11.602465, "o", "Receiving objects: 9% (582/6460)\r"]
[11.603569, "o", "Receiving objects: 10% (646/6460)\r"]
[11.60531, "o", "Receiving objects: 11% (711/6460)\r"]
[11.606678, "o", "Receiving objects: 12% (776/6460)\r"]
[11.61429, "o", "Receiving objects: 13% (840/6460)\r"]
[11.617346, "o", "Receiving objects: 14% (905/6460)\r"]
[11.618847, "o", "Receiving objects: 15% (969/6460)\r"]
[11.620487, "o", "Receiving objects: 16% (1034/6460)\r"]
[11.625557, "o", "Receiving objects: 17% (1099/6460)\r"]
[11.629904, "o", "Receiving objects: 18% (1163/6460)\r"]
[11.649377, "o", "Receiving objects: 19% (1228/6460)\r"]
[11.657956, "o", "Receiving objects: 20% (1292/6460)\r"]
[11.659039, "o", "Receiving objects: 21% (1357/6460)\r"]
[11.660689, "o", "Receiving objects: 22% (1422/6460)\r"]
[11.661792, "o", "Receiving objects: 23% (1486/6460)\r"]
[11.6648, "o", "Receiving objects: 24% (1551/6460)\r"]
[11.666737, "o", "Receiving objects: 25% (1615/6460)\r"]
[11.667606, "o", "Receiving objects: 26% (1680/6460)\r"]
[11.668087, "o", "Receiving objects: 27% (1745/6460)\r"]
[11.668777, "o", "Receiving objects: 28% (1809/6460)\r"]
[11.669447, "o", "Receiving objects: 29% (1874/6460)\r"]
[11.669756, "o", "Receiving objects: 30% (1938/6460)\r"]
[11.670243, "o", "Receiving objects: 31% (2003/6460)\r"]
[11.670908, "o", "Receiving objects: 32% (2068/6460)\r"]
[11.671693, "o", "Receiving objects: 33% (2132/6460)\r"]
[11.672735, "o", "Receiving objects: 34% (2197/6460)\r"]
[11.67306, "o", "Receiving objects: 35% (2261/6460)\r"]
[11.674186, "o", "Receiving objects: 36% (2326/6460)\r"]
[11.677843, "o", "Receiving objects: 37% (2391/6460)\r"]
[11.679747, "o", "Receiving objects: 38% (2455/6460)\r"]
[11.681031, "o", "Receiving objects: 39% (2520/6460)\r"]
[11.682121, "o", "Receiving objects: 40% (2584/6460)\r"]
[11.682775, "o", "Receiving objects: 41% (2649/6460)\r"]
[11.683315, "o", "Receiving objects: 42% (2714/6460)\r"]
[11.68397, "o", "Receiving objects: 43% (2778/6460)\r"]
[11.684544, "o", "Receiving objects: 44% (2843/6460)\r"]
[11.68536, "o", "Receiving objects: 45% (2907/6460)\r"]
[11.685731, "o", "Receiving objects: 46% (2972/6460)\r"]
[11.685922, "o", "Receiving objects: 47% (3037/6460)\r"]
[11.686128, "o", "Receiving objects: 48% (3101/6460)\r"]
[11.686254, "o", "Receiving objects: 49% (3166/6460)\r"]
[11.68637, "o", "Receiving objects: 50% (3230/6460)\r"]
[11.686543, "o", "Receiving objects: 51% (3295/6460)\r"]
[11.686678, "o", "Receiving objects: 52% (3360/6460)\r"]
[11.686821, "o", "Receiving objects: 53% (3424/6460)\r"]
[11.68761, "o", "Receiving objects: 54% (3489/6460)\r"]
[11.688505, "o", "Receiving objects: 55% (3553/6460)\r"]
[11.688956, "o", "Receiving objects: 56% (3618/6460)\r"]
[11.689234, "o", "Receiving objects: 57% (3683/6460)\r"]
[11.690906, "o", "Receiving objects: 58% (3747/6460)\r"]
[11.691653, "o", "Receiving objects: 59% (3812/6460)\r"]
[11.691899, "o", "Receiving objects: 60% (3876/6460)\r"]
[11.693494, "o", "Receiving objects: 61% (3941/6460)\r"]
[11.695109, "o", "Receiving objects: 62% (4006/6460)\r"]
[11.695775, "o", "Receiving objects: 63% (4070/6460)\r"]
[11.696865, "o", "Receiving objects: 64% (4135/6460)\r"]
[11.709142, "o", "Receiving objects: 65% (4199/6460)\r"]
[11.733061, "o", "Receiving objects: 66% (4264/6460)\r"]
[11.750513, "o", "Receiving objects: 67% (4329/6460)\r"]
[11.774167, "o", "Receiving objects: 68% (4393/6460)\r"]
[11.846929, "o", "Receiving objects: 69% (4458/6460)\r"]
[11.848888, "o", "Receiving objects: 70% (4522/6460)\r"]
[11.852407, "o", "Receiving objects: 71% (4587/6460)\r"]
[11.872535, "o", "Receiving objects: 72% (4652/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.924076, "o", "Receiving objects: 73% (4716/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.927961, "o", "Receiving objects: 74% (4781/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.929986, "o", "Receiving objects: 75% (4845/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.934065, "o", "Receiving objects: 76% (4910/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.938105, "o", "Receiving objects: 77% (4975/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.938964, "o", "Receiving objects: 78% (5039/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.940098, "o", "Receiving objects: 79% (5104/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.940965, "o", "Receiving objects: 80% (5168/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.941885, "o", "Receiving objects: 81% (5233/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.942888, "o", "Receiving objects: 82% (5298/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.943559, "o", "Receiving objects: 83% (5362/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.944535, "o", "Receiving objects: 84% (5427/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.945127, "o", "Receiving objects: 85% (5491/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.945846, "o", "Receiving objects: 86% (5556/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.946908, "o", "Receiving objects: 87% (5621/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.948754, "o", "Receiving objects: 88% (5685/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.950262, "o", "Receiving objects: 89% (5750/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.951499, "o", "Receiving objects: 90% (5814/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.95373, "o", "Receiving objects: 91% (5879/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.95589, "o", "Receiving objects: 92% (5944/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.957733, "o", "Receiving objects: 93% (6008/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.958178, "o", "Receiving objects: 94% (6073/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.961489, "o", "Receiving objects: 95% (6137/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.974336, "o", "Receiving objects: 96% (6202/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.977861, "o", "Receiving objects: 97% (6267/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.979219, "o", "Receiving objects: 98% (6331/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.980385, "o", "Receiving objects: 99% (6396/6460), 6.62 MiB | 13.23 MiB/s\r"]
[11.985734, "o", "remote: Total 6460 (delta 2728), reused 2211 (delta 1028), pack-reused 2509\u001b[K\r\n"]
[11.987974, "o", "Receiving objects: 100% (6460/6460), 6.62 MiB | 13.23 MiB/s\rReceiving objects: 100% (6460/6460), 10.48 MiB | 16.98 MiB/s, done.\r\n"]
[11.988435, "o", "Resolving deltas: 0% (0/4547)\r"]
[11.988924, "o", "Resolving deltas: 1% (46/4547)\r"]
[11.98914, "o", "Resolving deltas: 2% (91/4547)\r"]
[11.989445, "o", "Resolving deltas: 3% (137/4547)\r"]
[11.989697, "o", "Resolving deltas: 4% (182/4547)\r"]
[11.992119, "o", "Resolving deltas: 5% (228/4547)\r"]
[11.997325, "o", "Resolving deltas: 6% (273/4547)\r"]
[12.001489, "o", "Resolving deltas: 7% (319/4547)\r"]
[12.005076, "o", "Resolving deltas: 8% (364/4547)\r"]
[12.008182, "o", "Resolving deltas: 9% (410/4547)\r"]
[12.008475, "o", "Resolving deltas: 10% (455/4547)\r"]
[12.009028, "o", "Resolving deltas: 11% (501/4547)\r"]
[12.009664, "o", "Resolving deltas: 12% (546/4547)\r"]
[12.010156, "o", "Resolving deltas: 13% (592/4547)\r"]
[12.01072, "o", "Resolving deltas: 14% (637/4547)\r"]
[12.011479, "o", "Resolving deltas: 15% (683/4547)\r"]
[12.011801, "o", "Resolving deltas: 16% (728/4547)\r"]
[12.013445, "o", "Resolving deltas: 17% (773/4547)\r"]
[12.01399, "o", "Resolving deltas: 18% (819/4547)\r"]
[12.01476, "o", "Resolving deltas: 19% (864/4547)\r"]
[12.015257, "o", "Resolving deltas: 20% (910/4547)\r"]
[12.015949, "o", "Resolving deltas: 21% (955/4547)\r"]
[12.016155, "o", "Resolving deltas: 22% (1001/4547)\r"]
[12.017369, "o", "Resolving deltas: 23% (1046/4547)\r"]
[12.017909, "o", "Resolving deltas: 24% (1092/4547)\r"]
[12.018646, "o", "Resolving deltas: 25% (1137/4547)\r"]
[12.020329, "o", "Resolving deltas: 26% (1183/4547)\r"]
[12.020642, "o", "Resolving deltas: 27% (1228/4547)\r"]
[12.020898, "o", "Resolving deltas: 28% (1274/4547)\r"]
[12.022167, "o", "Resolving deltas: 29% (1319/4547)\r"]
[12.025132, "o", "Resolving deltas: 30% (1365/4547)\rResolving deltas: 31% (1410/4547)\rResolving deltas: 32% (1456/4547)\r"]
[12.02528, "o", "Resolving deltas: 33% (1501/4547)\r"]
[12.028241, "o", "Resolving deltas: 34% (1546/4547)\r"]
[12.028657, "o", "Resolving deltas: 35% (1592/4547)\r"]
[12.029358, "o", "Resolving deltas: 36% (1637/4547)\r"]
[12.029786, "o", "Resolving deltas: 37% (1683/4547)\r"]
[12.030087, "o", "Resolving deltas: 38% (1728/4547)\r"]
[12.030294, "o", "Resolving deltas: 39% (1774/4547)\r"]
[12.030631, "o", "Resolving deltas: 40% (1819/4547)\r"]
[12.031019, "o", "Resolving deltas: 41% (1865/4547)\r"]
[12.031424, "o", "Resolving deltas: 42% (1910/4547)\r"]
[12.031792, "o", "Resolving deltas: 43% (1956/4547)\r"]
[12.032042, "o", "Resolving deltas: 44% (2001/4547)\r"]
[12.032418, "o", "Resolving deltas: 45% (2047/4547)\r"]
[12.032739, "o", "Resolving deltas: 46% (2092/4547)\r"]
[12.033171, "o", "Resolving deltas: 47% (2138/4547)\r"]
[12.033664, "o", "Resolving deltas: 48% (2183/4547)\r"]
[12.034236, "o", "Resolving deltas: 49% (2229/4547)\r"]
[12.034664, "o", "Resolving deltas: 50% (2274/4547)\r"]
[12.035139, "o", "Resolving deltas: 51% (2319/4547)\r"]
[12.03552, "o", "Resolving deltas: 52% (2365/4547)\r"]
[12.035709, "o", "Resolving deltas: 53% (2410/4547)\r"]
[12.035828, "o", "Resolving deltas: 54% (2456/4547)\r"]
[12.036024, "o", "Resolving deltas: 55% (2501/4547)\r"]
[12.036188, "o", "Resolving deltas: 56% (2547/4547)\r"]
[12.036337, "o", "Resolving deltas: 57% (2592/4547)\r"]
[12.036497, "o", "Resolving deltas: 58% (2638/4547)\r"]
[12.036669, "o", "Resolving deltas: 59% (2683/4547)\r"]
[12.03684, "o", "Resolving deltas: 60% (2729/4547)\r"]
[12.037073, "o", "Resolving deltas: 61% (2774/4547)\r"]
[12.037249, "o", "Resolving deltas: 62% (2820/4547)\r"]
[12.03742, "o", "Resolving deltas: 63% (2865/4547)\r"]
[12.037568, "o", "Resolving deltas: 64% (2911/4547)\r"]
[12.037719, "o", "Resolving deltas: 65% (2956/4547)\r"]
[12.037935, "o", "Resolving deltas: 66% (3002/4547)\r"]
[12.038723, "o", "Resolving deltas: 67% (3047/4547)\r"]
[12.039277, "o", "Resolving deltas: 68% (3092/4547)\r"]
[12.03989, "o", "Resolving deltas: 69% (3138/4547)\r"]
[12.040045, "o", "Resolving deltas: 70% (3183/4547)\r"]
[12.040424, "o", "Resolving deltas: 71% (3229/4547)\r"]
[12.042803, "o", "Resolving deltas: 72% (3274/4547)\r"]
[12.043529, "o", "Resolving deltas: 73% (3320/4547)\r"]
[12.044131, "o", "Resolving deltas: 74% (3365/4547)\r"]
[12.044566, "o", "Resolving deltas: 75% (3411/4547)\r"]
[12.045729, "o", "Resolving deltas: 76% (3456/4547)\r"]
[12.047373, "o", "Resolving deltas: 77% (3502/4547)\r"]
[12.048804, "o", "Resolving deltas: 78% (3547/4547)\r"]
[12.051483, "o", "Resolving deltas: 79% (3593/4547)\r"]
[12.055837, "o", "Resolving deltas: 80% (3638/4547)\r"]
[12.058175, "o", "Resolving deltas: 81% (3684/4547)\r"]
[12.059952, "o", "Resolving deltas: 82% (3729/4547)\r"]
[12.061096, "o", "Resolving deltas: 83% (3775/4547)\r"]
[12.062187, "o", "Resolving deltas: 84% (3820/4547)\r"]
[12.062655, "o", "Resolving deltas: 85% (3865/4547)\r"]
[12.063593, "o", "Resolving deltas: 86% (3911/4547)\r"]
[12.068395, "o", "Resolving deltas: 87% (3956/4547)\r"]
[12.070181, "o", "Resolving deltas: 88% (4002/4547)\r"]
[12.071077, "o", "Resolving deltas: 89% (4047/4547)\r"]
[12.0717, "o", "Resolving deltas: 90% (4093/4547)\r"]
[12.071867, "o", "Resolving deltas: 91% (4138/4547)\r"]
[12.072192, "o", "Resolving deltas: 92% (4184/4547)\r"]
[12.072415, "o", "Resolving deltas: 93% (4229/4547)\r"]
[12.073367, "o", "Resolving deltas: 94% (4275/4547)\r"]
[12.073954, "o", "Resolving deltas: 95% (4320/4547)\r"]
[12.07453, "o", "Resolving deltas: 96% (4366/4547)\r"]
[12.075264, "o", "Resolving deltas: 97% (4411/4547)\r"]
[12.077159, "o", "Resolving deltas: 98% (4457/4547)\r"]
[12.079019, "o", "Resolving deltas: 99% (4502/4547)\r"]
[12.081418, "o", "Resolving deltas: 100% (4547/4547)\r"]
[12.081551, "o", "Resolving deltas: 100% (4547/4547), done.\r\n"]
[12.218599, "o", "\u001b[?2004h\u001b]0;gtheler@tom: ~\u0007\u001b[01;30mgtheler\u001b[00m@\u001b[01;33mtom\u001b[00m:~$ "]
[13.196844, "o", "c"]
[13.244234, "o", "d"]
[13.340338, "o", " "]
[13.508096, "o", "f"]
[13.572506, "o", "e"]
[13.740952, "o", "e"]
[13.873141, "o", "nox/"]
[14.253167, "o", "\r\n\u001b[?2004l\r"]
[14.253559, "o", "\u001b[?2004h\u001b]0;gtheler@tom: ~/feenox\u0007\u001b[01;30mgtheler\u001b[00m@\u001b[01;33mtom\u001b[00m:~/feenox$ "]
[14.796683, "o", "."]
[15.228682, "o", "/"]
[16.09228, "o", "a"]
[16.284788, "o", "u"]
[16.380734, "o", "t"]
[16.476351, "o", "o"]
[16.566414, "o", "g"]
[16.629602, "o", "en.sh "]
[16.939922, "o", "\r\n\u001b[?2004l\r"]
[17.207825, "o", "creating Makefile.am... "]
[17.213991, "o", "ok\r\ncalling autoreconf... \r\n"]
[20.302088, "o", "configure.ac:18: installing './compile'\r\n"]
[20.304719, "o", "configure.ac:15: installing './config.guess'\r\n"]
[20.307609, "o", "configure.ac:15: installing './config.sub'\r\n"]
[20.309398, "o", "configure.ac:17: installing './install-sh'\r\n"]
[20.310879, "o", "configure.ac:17: installing './missing'\r\n"]
[20.34446, "o", "parallel-tests: installing './test-driver'\r\n"]
[20.42891, "o", "src/Makefile.am: installing './depcomp'\r\n"]
[20.627918, "o", "done\r\n"]
[20.628178, "o", "\u001b[?2004h\u001b]0;gtheler@tom: ~/feenox\u0007\u001b[01;30mgtheler\u001b[00m@\u001b[01;33mtom\u001b[00m:~/feenox$ "]
[21.275971, "o", "."]
[21.749822, "o", "/"]
[21.987756, "o", "c"]
[22.228191, "o", "o"]
[22.292379, "o", "n"]
[22.396924, "o", "f"]
[22.500837, "o", "i"]
[22.573278, "o", "g"]
[22.684687, "o", "u"]
[22.757363, "o", "r"]
[22.797272, "o", "e"]
[23.580552, "o", "\r\n\u001b[?2004l\r"]
[23.810616, "o", "checking build system type... "]
[23.871744, "o", "x86_64-pc-linux-gnu\r\n"]
[23.871897, "o", "checking host system type... x86_64-pc-linux-gnu\r\n"]
[23.872053, "o", "checking for a BSD-compatible install... "]
[23.881897, "o", "/usr/bin/install -c\r\n"]
[23.882037, "o", "checking whether build environment is sane... "]
[23.885095, "o", "yes\r\n"]
[23.894057, "o", "checking for a thread-safe mkdir -p... "]
[23.896638, "o", "/usr/bin/mkdir -p\r\n"]
[23.896799, "o", "checking for gawk... "]
[23.896955, "o", "gawk\r\n"]
[23.897026, "o", "checking whether make sets $(MAKE)... "]
[23.907351, "o", "yes\r\n"]
[23.911377, "o", "checking whether make supports nested variables... "]
[23.915925, "o", "yes\r\n"]
[23.923532, "o", "checking for gcc... "]
[23.923712, "o", "gcc\r\n"]
[23.952209, "o", "checking whether the C compiler works... "]
[23.999706, "o", "yes\r\nchecking for C compiler default output file name... a.out\r\n"]
[24.001423, "o", "checking for suffix of executables... "]
[24.03877, "o", "\r\n"]
[24.040908, "o", "checking whether we are cross compiling... "]
[24.084568, "o", "no\r\n"]
[24.085404, "o", "checking for suffix of object files... "]
[24.109975, "o", "o\r\n"]
[24.110112, "o", "checking whether we are using the GNU C compiler... "]
[24.134188, "o", "yes\r\nchecking whether gcc accepts -g... "]
[24.155367, "o", "yes\r\n"]
[24.155485, "o", "checking for gcc option to accept ISO C89... "]
[24.190198, "o", "none needed\r\n"]
[24.190301, "o", "checking whether gcc understands -c and -o together... "]
[24.229144, "o", "yes\r\n"]
[24.229288, "o", "checking whether make supports the include directive... "]
[24.239048, "o", "yes (GNU style)\r\n"]
[24.239095, "o", "checking dependency style of gcc... "]
[24.27811, "o", "gcc3\r\n"]
[24.278239, "o", "checking for library containing cos... "]
[24.386345, "o", "-lm\r\n"]
[24.386478, "o", "checking how to run the C preprocessor... "]
[24.414887, "o", "gcc -E\r\n"]
[24.444186, "o", "checking for grep that handles long lines and -e... "]
[24.446865, "o", "/usr/bin/grep\r\nchecking for egrep... "]
[24.449274, "o", "/usr/bin/grep -E\r\nchecking for ANSI C header files... "]
[24.563325, "o", "yes\r\n"]
[24.566057, "o", "checking for sys/types.h... "]
[24.589871, "o", "yes\r\n"]
[24.596008, "o", "checking for sys/stat.h... "]
[24.622438, "o", "yes\r\n"]
[24.629009, "o", "checking for stdlib.h... "]
[24.657053, "o", "yes\r\n"]
[24.665236, "o", "checking for string.h... "]
[24.693952, "o", "yes\r\n"]
[24.701382, "o", "checking for memory.h... "]
[24.732141, "o", "yes\r\n"]
[24.740334, "o", "checking for strings.h... "]
[24.768922, "o", "yes\r\n"]
[24.777063, "o", "checking for inttypes.h... "]
[24.805671, "o", "yes\r\n"]
[24.812618, "o", "checking for stdint.h... "]
[24.841355, "o", "yes\r\n"]
[24.848704, "o", "checking for unistd.h... "]
[24.879205, "o", "yes\r\n"]
[24.883989, "o", "checking math.h usability... "]
[24.923504, "o", "yes\r\nchecking math.h presence... "]
[24.942258, "o", "yes\r\nchecking for math.h... "]
[24.942425, "o", "yes\r\n"]
[24.942549, "o", "checking for sysconf... "]
[24.990504, "o", "yes\r\n"]
[24.991659, "o", "checking for clock_gettime... "]
[25.048673, "o", "yes\r\n"]
[25.050025, "o", "checking for getrusage... "]
[25.114195, "o", "yes\r\n"]
[25.115213, "o", "checking for asprintf... "]
[25.172507, "o", "yes\r\n"]
[25.176356, "o", "checking sundials/sundials_types.h usability... "]
[25.209396, "o", "yes\r\nchecking sundials/sundials_types.h presence... "]
[25.221589, "o", "yes\r\nchecking for sundials/sundials_types.h... "]
[25.221883, "o", "yes\r\n"]
[25.229325, "o", "checking ida/ida.h usability... "]
[25.26561, "o", "yes\r\nchecking ida/ida.h presence... "]
[25.284191, "o", "yes\r\nchecking for ida/ida.h... "]
[25.284243, "o", "yes\r\n"]
[25.290628, "o", "checking sundials/sundials_linearsolver.h usability... "]
[25.321912, "o", "yes\r\nchecking sundials/sundials_linearsolver.h presence... "]
[25.340901, "o", "yes\r\nchecking for sundials/sundials_linearsolver.h... "]
[25.341007, "o", "yes\r\n"]
[25.345125, "o", "checking for IDAInit in -lsundials_ida... "]
[25.397431, "o", "yes\r\n"]
[25.398822, "o", "checking nvector/nvector_serial.h usability... "]
[25.432051, "o", "yes\r\nchecking nvector/nvector_serial.h presence... "]
[25.449911, "o", "yes\r\n"]
[25.449951, "o", "checking for nvector/nvector_serial.h... "]
[25.450086, "o", "yes\r\nchecking for N_VNew_Serial in -lsundials_nvecserial... "]
[25.499208, "o", "yes\r\n"]
[25.500978, "o", "checking for PETSc dir... /home/gtheler/codigos/feenox/dist/petsc-3.16.3\r\nchecking for PETSc arch... "]
[25.501072, "o", "linux-serial-static\r\n"]
[25.501312, "o", "checking for SLEPc dir... "]
[25.501397, "o", "/home/gtheler/codigos/feenox/dist/slepc-3.16.1\r\n"]
[25.503527, "o", "checking gsl/gsl_vector.h usability... "]
[25.543093, "o", "yes\r\nchecking gsl/gsl_vector.h presence... "]
[25.567343, "o", "yes\r\nchecking for gsl/gsl_vector.h... "]
[25.567671, "o", "yes\r\n"]
[25.569864, "o", "checking for cblas_dgemm in -lgslcblas... "]
[25.663078, "o", "yes\r\n"]
[25.665617, "o", "checking for gsl_blas_dgemm in -lgsl... "]
[25.751538, "o", "yes\r\n"]
[25.753057, "o", "configure: creating ./src/version.h\r\n"]
[25.907193, "o", "## ----------------------- ##\r\n## Summary of dependencies ##\r\n## ----------------------- ##\r\n GNU Scientific Library from system\r\n"]
[25.907451, "o", " SUNDIALS yes\r\n PETSc yes /home/gtheler/codigos/feenox/dist/petsc-3.16.3 linux-serial-static\r\n SLEPc yes /home/gtheler/codigos/feenox/dist/slepc-3.16.1\r\n Compiler gcc -Wl,-z,relro -I/usr/include/x86_64-linux-gnu/mpich -L/usr/lib/x86_64-linux-gnu -lmpich\r\n"]
[25.938716, "o", "checking that generated files are newer than configure... "]
[25.939107, "o", "done\r\n"]
[25.939185, "o", "configure: creating ./config.status\r\n"]
[26.042881, "o", "config.status: creating Makefile\r\n"]
[26.060448, "o", "config.status: creating src/Makefile\r\n"]
[26.089416, "o", "config.status: creating doc/Makefile\r\n"]
[27.835769, "o", "config.status: executing depfiles commands\r\n"]
[28.338027, "o", "\u001b[?2004h\u001b]0;gtheler@tom: ~/feenox\u0007\u001b[01;30mgtheler\u001b[00m@\u001b[01;33mtom\u001b[00m:~/feenox$ "]
[29.285099, "o", "m"]
[29.381427, "o", "a"]
[29.446403, "o", "k"]
[29.565507, "o", "e"]
[29.614795, "o", " "]
[29.756566, "o", "-"]
[29.909006, "o", "j"]
[30.676553, "o", "7"]
[30.765709, "o", "\r\n"]
[30.766073, "o", "\u001b[?2004l\r"]
[30.790469, "o", "Making all in src\r\n"]
[30.808946, "o", "make[1]: Entering directory '/home/gtheler/feenox/src'\r\n"]
[30.813934, "o", " cd .. && /bin/bash /home/gtheler/feenox/missing automake-1.16 --gnu src/Makefile\r\n"]
[31.461126, "o", " cd .. && /bin/bash ./config.status src/Makefile depfiles\r\n"]
[31.507819, "o", "config.status: creating src/Makefile\r\n"]
[31.53256, "o", "config.status: executing depfiles commands\r\n"]
[31.573747, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[31.574491, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./feenox-feenox.o -MD -MP -MF .deps/feenox-feenox.Tpo -c -o ./feenox-feenox.o `test -f './feenox.c' || echo './'`./feenox.c\r\n"]
[31.575177, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[31.575288, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./feenox-version.o -MD -MP -MF .deps/feenox-version.Tpo -c -o ./feenox-version.o `test -f './version.c' || echo './'`./version.c\r\n"]
[31.577164, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[31.577437, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./contrib/feenox-kdtree.o -MD -MP -MF ./contrib/.deps/feenox-kdtree.Tpo -c -o ./contrib/feenox-kdtree.o `test -f './contrib/kdtree.c' || echo './'`./contrib/kdtree.c\r\ngcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_"]
[31.577526, "o", "PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./flow/feenox-init.o -MD -MP -MF ./flow/.deps/feenox-init.Tpo -c -o ./flow/feenox-init.o `test -f './flow/init.c' || echo './'`./flow/init.c\r\n"]
[31.578932, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[31.579047, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./flow/feenox-abort.o -MD -MP -MF ./flow/.deps/feenox-abort.Tpo -c -o ./flow/feenox-abort.o `test -f './flow/abort.c' || echo './'`./flow/abort.c\r\n"]
[31.579237, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[31.579411, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./flow/feenox-conditional.o -MD -MP -MF ./flow/.deps/feenox-conditional.Tpo -c -o ./flow/feenox-conditional.o `test -f './flow/conditional.c' || echo './'`./flow/conditional.c\r\n"]
[31.579553, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[31.579625, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./flow/feenox-error.o -MD -MP -MF ./flow/.deps/feenox-error.Tpo -c -o ./flow/feenox-error.o `test -f './flow/error.c' || echo './'`./flow/error.c\r\n"]
[31.854701, "o", "mv -f ./flow/.deps/feenox-abort.Tpo ./flow/.deps/feenox-abort.Po\r\n"]
[31.860728, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[31.86105, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./flow/feenox-define.o -MD -MP -MF ./flow/.deps/feenox-define.Tpo -c -o ./flow/feenox-define.o `test -f './flow/define.c' || echo './'`./flow/define.c\r\n"]
[31.863472, "o", "mv -f ./flow/.deps/feenox-conditional.Tpo ./flow/.deps/feenox-conditional.Po\r\n"]
[31.868751, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[31.86982, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./flow/feenox-getptr.o -MD -MP -MF ./flow/.deps/feenox-getptr.Tpo -c -o ./flow/feenox-getptr.o `test -f './flow/getptr.c' || echo './'`./flow/getptr.c\r\n"]
[31.897241, "o", "mv -f .deps/feenox-feenox.Tpo .deps/feenox-feenox.Po\r\n"]
[31.902359, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[31.902688, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./flow/feenox-cleanup.o -MD -MP -MF ./flow/.deps/feenox-cleanup.Tpo -c -o ./flow/feenox-cleanup.o `test -f './flow/cleanup.c' || echo './'`./flow/cleanup.c\r\n"]
[31.940163, "o", "mv -f ./flow/.deps/feenox-error.Tpo ./flow/.deps/feenox-error.Po"]
[31.940788, "o", "\r\n"]
[31.94541, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[31.946545, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./flow/feenox-instruction.o -MD -MP -MF ./flow/.deps/feenox-instruction.Tpo -c -o ./flow/feenox-instruction.o `test -f './flow/instruction.c' || echo './'`./flow/instruction.c"]
[31.948219, "o", "\r\n"]
[31.95356, "o", "mv -f .deps/feenox-version.Tpo .deps/feenox-version.Po"]
[31.954266, "o", "\r\n"]
[31.95804, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[31.958673, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./flow/feenox-step.o -MD -MP -MF ./flow/.deps/feenox-step.Tpo -c -o ./flow/feenox-step.o `test -f './flow/step.c' || echo './'`./flow/step.c"]
[31.958991, "o", "\r\n"]
[31.962376, "o", "mv -f ./flow/.deps/feenox-init.Tpo ./flow/.deps/feenox-init.Po"]
[31.963302, "o", "\r\n"]
[31.983512, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[31.984056, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./flow/feenox-run.o -MD -MP -MF ./flow/.deps/feenox-run.Tpo -c -o ./flow/feenox-run.o `test -f './flow/run.c' || echo './'`./flow/run.c\r\n"]
[32.176527, "o", "mv -f ./contrib/.deps/feenox-kdtree.Tpo ./contrib/.deps/feenox-kdtree.Po"]
[32.177642, "o", "\r\n"]
[32.185147, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[32.185771, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./parser/feenox-parser.o -MD -MP -MF ./parser/.deps/feenox-parser.Tpo -c -o ./parser/feenox-parser.o `test -f './parser/parser.c' || echo './'`./parser/parser.c"]
[32.185999, "o", "\r\n"]
[32.228648, "o", "mv -f ./flow/.deps/feenox-cleanup.Tpo ./flow/.deps/feenox-cleanup.Po"]
[32.230032, "o", "\r\n"]
[32.237478, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[32.2384, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./parser/feenox-auxiliary.o -MD -MP -MF ./parser/.deps/feenox-auxiliary.Tpo -c -o ./parser/feenox-auxiliary.o `test -f './parser/auxiliary.c' || echo './'`./parser/auxiliary.c"]
[32.238707, "o", "\r\n"]
[32.285214, "o", "mv -f ./flow/.deps/feenox-instruction.Tpo ./flow/.deps/feenox-instruction.Po"]
[32.285853, "o", "\r\n"]
[32.305364, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[32.305614, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./io/feenox-file.o -MD -MP -MF ./io/.deps/feenox-file.Tpo -c -o ./io/feenox-file.o `test -f './io/file.c' || echo './'`./io/file.c\r\n"]
[32.376585, "o", "mv -f ./flow/.deps/feenox-step.Tpo ./flow/.deps/feenox-step.Po\r\n"]
[32.381512, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[32.381738, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./io/feenox-print.o -MD -MP -MF ./io/.deps/feenox-print.Tpo -c -o ./io/feenox-print.o `test -f './io/print.c' || echo './'`./io/print.c\r\n"]
[32.517398, "o", "mv -f ./flow/.deps/feenox-getptr.Tpo ./flow/.deps/feenox-getptr.Po\r\n"]
[32.520367, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[32.52092, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./math/feenox-alias.o -MD -MP -MF ./math/.deps/feenox-alias.Tpo -c -o ./math/feenox-alias.o `test -f './math/alias.c' || echo './'`./math/alias.c\r\n"]
[32.576694, "o", "mv -f ./flow/.deps/feenox-run.Tpo ./flow/.deps/feenox-run.Po\r\n"]
[32.585529, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[32.586211, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./math/feenox-assignment.o -MD -MP -MF ./math/.deps/feenox-assignment.Tpo -c -o ./math/feenox-assignment.o `test -f './math/assignment.c' || echo './'`./math/assignment.c\r\n"]
[32.771354, "o", "mv -f ./io/.deps/feenox-file.Tpo ./io/.deps/feenox-file.Po"]
[32.77189, "o", "\r\n"]
[32.775915, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[32.777387, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./math/feenox-builtin_functions.o -MD -MP -MF ./math/.deps/feenox-builtin_functions.Tpo -c -o ./math/feenox-builtin_functions.o `test -f './math/builtin_functions.c' || echo './'`./math/builtin_functions.c\r\n"]
[32.870736, "o", "mv -f ./math/.deps/feenox-alias.Tpo ./math/.deps/feenox-alias.Po"]
[32.872335, "o", "\r\n"]
[32.878497, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[32.880104, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./math/feenox-builtin_functionals.o -MD -MP -MF ./math/.deps/feenox-builtin_functionals.Tpo -c -o ./math/feenox-builtin_functionals.o `test -f './math/builtin_functionals.c' || echo './'`./math/builtin_functionals.c\r\n"]
[32.892658, "o", "mv -f ./parser/.deps/feenox-auxiliary.Tpo ./parser/.deps/feenox-auxiliary.Po\r\n"]
[32.905447, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[32.905832, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./math/feenox-builtin_vectorfunctions.o -MD -MP -MF ./math/.deps/feenox-builtin_vectorfunctions.Tpo -c -o ./math/feenox-builtin_vectorfunctions.o `test -f './math/builtin_vectorfunctions.c' || echo './'`./math/builtin_vectorfunctions.c\r\n"]
[33.121271, "o", "mv -f ./io/.deps/feenox-print.Tpo ./io/.deps/feenox-print.Po\r\n"]
[33.12942, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[33.129683, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./math/feenox-dae.o -MD -MP -MF ./math/.deps/feenox-dae.Tpo -c -o ./math/feenox-dae.o `test -f './math/dae.c' || echo './'`./math/dae.c\r\n"]
[33.284785, "o", "mv -f ./math/.deps/feenox-assignment.Tpo ./math/.deps/feenox-assignment.Po\r\n"]
[33.287499, "o", "mv -f ./flow/.deps/feenox-define.Tpo ./flow/.deps/feenox-define.Po\r\n"]
[33.288845, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[33.289087, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./math/feenox-expressions.o -MD -MP -MF ./math/.deps/feenox-expressions.Tpo -c -o ./math/feenox-expressions.o `test -f './math/expressions.c' || echo './'`./math/expressions.c\r\n"]
[33.292278, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[33.294596, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./math/feenox-fit.o -MD -MP -MF ./math/.deps/feenox-fit.Tpo -c -o ./math/feenox-fit.o `test -f './math/fit.c' || echo './'`./math/fit.c\r\n"]
[33.35837, "o", "mv -f ./math/.deps/feenox-builtin_functionals.Tpo ./math/.deps/feenox-builtin_functionals.Po"]
[33.358798, "o", "\r\n"]
[33.36314, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[33.364554, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./math/feenox-matrix.o -MD -MP -MF ./math/.deps/feenox-matrix.Tpo -c -o ./math/feenox-matrix.o `test -f './math/matrix.c' || echo './'`./math/matrix.c\r\n"]
[33.367021, "o", "mv -f ./math/.deps/feenox-builtin_vectorfunctions.Tpo ./math/.deps/feenox-builtin_vectorfunctions.Po\r\n"]
[33.370683, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[33.371619, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./math/feenox-function.o -MD -MP -MF ./math/.deps/feenox-function.Tpo -c -o ./math/feenox-function.o `test -f './math/function.c' || echo './'`./math/function.c\r\n"]
[33.564233, "o", "mv -f ./math/.deps/feenox-builtin_functions.Tpo ./math/.deps/feenox-builtin_functions.Po"]
[33.56556, "o", "\r\n"]
[33.574965, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[33.575865, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./math/feenox-vector.o -MD -MP -MF ./math/.deps/feenox-vector.Tpo -c -o ./math/feenox-vector.o `test -f './math/vector.c' || echo './'`./math/vector.c"]
[33.576302, "o", "\r\n"]
[33.738449, "o", "mv -f ./math/.deps/feenox-matrix.Tpo ./math/.deps/feenox-matrix.Po"]
[33.739254, "o", "\r\n"]
[33.744512, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[33.746317, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-init.o -MD -MP -MF ./mesh/.deps/feenox-init.Tpo -c -o ./mesh/feenox-init.o `test -f './mesh/init.c' || echo './'`./mesh/init.c\r\n"]
[33.788595, "o", "mv -f ./math/.deps/feenox-dae.Tpo ./math/.deps/feenox-dae.Po"]
[33.78941, "o", "\r\n"]
[33.794283, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[33.796121, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-geometry.o -MD -MP -MF ./mesh/.deps/feenox-geometry.Tpo -c -o ./mesh/feenox-geometry.o `test -f './mesh/geometry.c' || echo './'`./mesh/geometry.c"]
[33.796837, "o", "\r\n"]
[33.935314, "o", "mv -f ./math/.deps/feenox-fit.Tpo ./math/.deps/feenox-fit.Po"]
[33.935916, "o", "\r\n"]
[33.940129, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[33.94112, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-neighbors.o -MD -MP -MF ./mesh/.deps/feenox-neighbors.Tpo -c -o ./mesh/feenox-neighbors.o `test -f './mesh/neighbors.c' || echo './'`./mesh/neighbors.c\r\n"]
[33.958162, "o", "mv -f ./math/.deps/feenox-vector.Tpo ./math/.deps/feenox-vector.Po\r\n"]
[33.968052, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[33.968587, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-boundary_condition.o -MD -MP -MF ./mesh/.deps/feenox-boundary_condition.Tpo -c -o ./mesh/feenox-boundary_condition.o `test -f './mesh/boundary_condition.c' || echo './'`./mesh/boundary_condition.c\r\n"]
[34.009485, "o", "mv -f ./parser/.deps/feenox-parser.Tpo ./parser/.deps/feenox-parser.Po"]
[34.009882, "o", "\r\n"]
[34.014093, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[34.015005, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-physical_group.o -MD -MP -MF ./mesh/.deps/feenox-physical_group.Tpo -c -o ./mesh/feenox-physical_group.o `test -f './mesh/physical_group.c' || echo './'`./mesh/physical_group.c\r\n"]
[34.067598, "o", "mv -f ./mesh/.deps/feenox-init.Tpo ./mesh/.deps/feenox-init.Po"]
[34.06788, "o", "\r\n"]
[34.072732, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[34.07373, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-interpolate.o -MD -MP -MF ./mesh/.deps/feenox-interpolate.Tpo -c -o ./mesh/feenox-interpolate.o `test -f './mesh/interpolate.c' || echo './'`./mesh/interpolate.c"]
[34.074455, "o", "\r\n"]
[34.171967, "o", "mv -f ./mesh/.deps/feenox-geometry.Tpo ./mesh/.deps/feenox-geometry.Po\r\n"]
[34.175804, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[34.176418, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-material.o -MD -MP -MF ./mesh/.deps/feenox-material.Tpo -c -o ./mesh/feenox-material.o `test -f './mesh/material.c' || echo './'`./mesh/material.c\r\n"]
[34.221107, "o", "mv -f ./math/.deps/feenox-expressions.Tpo ./math/.deps/feenox-expressions.Po\r\n"]
[34.225468, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[34.225992, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-element.o -MD -MP -MF ./mesh/.deps/feenox-element.Tpo -c -o ./mesh/feenox-element.o `test -f './mesh/element.c' || echo './'`./mesh/element.c\r\n"]
[34.486706, "o", "mv -f ./mesh/.deps/feenox-boundary_condition.Tpo ./mesh/.deps/feenox-boundary_condition.Po\r\n"]
[34.493928, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[34.493988, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-cell.o -MD -MP -MF ./mesh/.deps/feenox-cell.Tpo -c -o ./mesh/feenox-cell.o `test -f './mesh/cell.c' || echo './'`./mesh/cell.c\r\n"]
[34.509916, "o", "mv -f ./math/.deps/feenox-function.Tpo ./math/.deps/feenox-function.Po\r\n"]
[34.516362, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[34.517262, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-fem.o -MD -MP -MF ./mesh/.deps/feenox-fem.Tpo -c -o ./mesh/feenox-fem.o `test -f './mesh/fem.c' || echo './'`./mesh/fem.c\r\n"]
[34.541597, "o", "mv -f ./mesh/.deps/feenox-neighbors.Tpo ./mesh/.deps/feenox-neighbors.Po\r\n"]
[34.547368, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[34.547867, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-write.o -MD -MP -MF ./mesh/.deps/feenox-write.Tpo -c -o ./mesh/feenox-write.o `test -f './mesh/write.c' || echo './'`./mesh/write.c\r\n"]
[34.619591, "o", "mv -f ./mesh/.deps/feenox-interpolate.Tpo ./mesh/.deps/feenox-interpolate.Po"]
[34.620137, "o", "\r\n"]
[34.62526, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[34.626819, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-integrate.o -MD -MP -MF ./mesh/.deps/feenox-integrate.Tpo -c -o ./mesh/feenox-integrate.o `test -f './mesh/integrate.c' || echo './'`./mesh/integrate.c\r\n"]
[34.63526, "o", "mv -f ./mesh/.deps/feenox-physical_group.Tpo ./mesh/.deps/feenox-physical_group.Po"]
[34.6358, "o", "\r\n"]
[34.644688, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[34.646017, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-extrema.o -MD -MP -MF ./mesh/.deps/feenox-extrema.Tpo -c -o ./mesh/feenox-extrema.o `test -f './mesh/extrema.c' || echo './'`./mesh/extrema.c\r\n"]
[34.831977, "o", "mv -f ./mesh/.deps/feenox-element.Tpo ./mesh/.deps/feenox-element.Po\r\n"]
[34.8376, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[34.838717, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-line2.o -MD -MP -MF ./mesh/.deps/feenox-line2.Tpo -c -o ./mesh/feenox-line2.o `test -f './mesh/line2.c' || echo './'`./mesh/line2.c\r\n"]
[34.878596, "o", "mv -f ./mesh/.deps/feenox-write.Tpo ./mesh/.deps/feenox-write.Po\r\n"]
[34.881646, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[34.885236, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-line3.o -MD -MP -MF ./mesh/.deps/feenox-line3.Tpo -c -o ./mesh/feenox-line3.o `test -f './mesh/line3.c' || echo './'`./mesh/line3.c\r\n"]
[34.888657, "o", "mv -f ./mesh/.deps/feenox-cell.Tpo ./mesh/.deps/feenox-cell.Po\r\n"]
[34.893848, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[34.894095, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-triang3.o -MD -MP -MF ./mesh/.deps/feenox-triang3.Tpo -c -o ./mesh/feenox-triang3.o `test -f './mesh/triang3.c' || echo './'`./mesh/triang3.c\r\n"]
[35.04622, "o", "mv -f ./mesh/.deps/feenox-material.Tpo ./mesh/.deps/feenox-material.Po"]
[35.047071, "o", "\r\n"]
[35.055759, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[35.056592, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-triang6.o -MD -MP -MF ./mesh/.deps/feenox-triang6.Tpo -c -o ./mesh/feenox-triang6.o `test -f './mesh/triang6.c' || echo './'`./mesh/triang6.c"]
[35.057279, "o", "\r\n"]
[35.144506, "o", "mv -f ./mesh/.deps/feenox-integrate.Tpo ./mesh/.deps/feenox-integrate.Po"]
[35.145112, "o", "\r\n"]
[35.150483, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[35.151138, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-quad4.o -MD -MP -MF ./mesh/.deps/feenox-quad4.Tpo -c -o ./mesh/feenox-quad4.o `test -f './mesh/quad4.c' || echo './'`./mesh/quad4.c"]
[35.152104, "o", "\r\n"]
[35.268529, "o", "mv -f ./mesh/.deps/feenox-line3.Tpo ./mesh/.deps/feenox-line3.Po\r\n"]
[35.273839, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[35.275861, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-quad8.o -MD -MP -MF ./mesh/.deps/feenox-quad8.Tpo -c -o ./mesh/feenox-quad8.o `test -f './mesh/quad8.c' || echo './'`./mesh/quad8.c\r\nmv -f ./mesh/.deps/feenox-line2.Tpo ./mesh/.deps/feenox-line2.Po\r\n"]
[35.27894, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[35.280626, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-quad9.o -MD -MP -MF ./mesh/.deps/feenox-quad9.Tpo -c -o ./mesh/feenox-quad9.o `test -f './mesh/quad9.c' || echo './'`./mesh/quad9.c\r\n"]
[35.329999, "o", "mv -f ./mesh/.deps/feenox-fem.Tpo ./mesh/.deps/feenox-fem.Po\r\n"]
[35.334535, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[35.334846, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-tet4.o -MD -MP -MF ./mesh/.deps/feenox-tet4.Tpo -c -o ./mesh/feenox-tet4.o `test -f './mesh/tet4.c' || echo './'`./mesh/tet4.c"]
[35.335034, "o", "\r\n"]
[35.343647, "o", "mv -f ./mesh/.deps/feenox-triang3.Tpo ./mesh/.deps/feenox-triang3.Po"]
[35.344909, "o", "\r\n"]
[35.346871, "o", "mv -f ./mesh/.deps/feenox-extrema.Tpo ./mesh/.deps/feenox-extrema.Po\r\n"]
[35.352391, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[35.353601, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-tet10.o -MD -MP -MF ./mesh/.deps/feenox-tet10.Tpo -c -o ./mesh/feenox-tet10.o `test -f './mesh/tet10.c' || echo './'`./mesh/tet10.c\r\ngcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC"]
[35.35429, "o", "=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-hexa8.o -MD -MP -MF ./mesh/.deps/feenox-hexa8.Tpo -c -o ./mesh/feenox-hexa8.o `test -f './mesh/hexa8.c' || echo './'`./mesh/hexa8.c\r\n"]
[35.440412, "o", "mv -f ./mesh/.deps/feenox-triang6.Tpo ./mesh/.deps/feenox-triang6.Po"]
[35.440816, "o", "\r\n"]
[35.443792, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[35.444035, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-hexa20.o -MD -MP -MF ./mesh/.deps/feenox-hexa20.Tpo -c -o ./mesh/feenox-hexa20.o `test -f './mesh/hexa20.c' || echo './'`./mesh/hexa20.c"]
[35.444382, "o", "\r\n"]
[35.625525, "o", "mv -f ./mesh/.deps/feenox-quad4.Tpo ./mesh/.deps/feenox-quad4.Po\r\n"]
[35.659811, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[35.660267, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-hexa27.o -MD -MP -MF ./mesh/.deps/feenox-hexa27.Tpo -c -o ./mesh/feenox-hexa27.o `test -f './mesh/hexa27.c' || echo './'`./mesh/hexa27.c\r\n"]
[35.680712, "o", "mv -f ./mesh/.deps/feenox-quad8.Tpo ./mesh/.deps/feenox-quad8.Po"]
[35.682072, "o", "\r\n"]
[35.693115, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[35.694346, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-prism6.o -MD -MP -MF ./mesh/.deps/feenox-prism6.Tpo -c -o ./mesh/feenox-prism6.o `test -f './mesh/prism6.c' || echo './'`./mesh/prism6.c\r\n"]
[35.755183, "o", "mv -f ./mesh/.deps/feenox-quad9.Tpo ./mesh/.deps/feenox-quad9.Po\r\n"]
[35.769433, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[35.769588, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-prism15.o -MD -MP -MF ./mesh/.deps/feenox-prism15.Tpo -c -o ./mesh/feenox-prism15.o `test -f './mesh/prism15.c' || echo './'`./mesh/prism15.c\r\n"]
[35.822815, "o", "mv -f ./mesh/.deps/feenox-tet10.Tpo ./mesh/.deps/feenox-tet10.Po"]
[35.823849, "o", "\r\n"]
[35.860586, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[35.861367, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-point.o -MD -MP -MF ./mesh/.deps/feenox-point.Tpo -c -o ./mesh/feenox-point.o `test -f './mesh/point.c' || echo './'`./mesh/point.c\r\n"]
[35.890837, "o", "mv -f ./mesh/.deps/feenox-tet4.Tpo ./mesh/.deps/feenox-tet4.Po"]
[35.890989, "o", "\r\n"]
[35.895849, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[35.896111, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-mesh.o -MD -MP -MF ./mesh/.deps/feenox-mesh.Tpo -c -o ./mesh/feenox-mesh.o `test -f './mesh/mesh.c' || echo './'`./mesh/mesh.c"]
[35.896297, "o", "\r\n"]
[35.902907, "o", "mv -f ./mesh/.deps/feenox-hexa8.Tpo ./mesh/.deps/feenox-hexa8.Po\r\n"]
[35.922407, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[35.922479, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-gmsh.o -MD -MP -MF ./mesh/.deps/feenox-gmsh.Tpo -c -o ./mesh/feenox-gmsh.o `test -f './mesh/gmsh.c' || echo './'`./mesh/gmsh.c\r\n"]
[36.055147, "o", "mv -f ./mesh/.deps/feenox-hexa20.Tpo ./mesh/.deps/feenox-hexa20.Po\r\n"]
[36.057719, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[36.057998, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-calculix.o -MD -MP -MF ./mesh/.deps/feenox-calculix.Tpo -c -o ./mesh/feenox-calculix.o `test -f './mesh/calculix.c' || echo './'`./mesh/calculix.c\r\n"]
[36.217314, "o", "mv -f ./mesh/.deps/feenox-prism15.Tpo ./mesh/.deps/feenox-prism15.Po\r\n"]
[36.223134, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[36.223731, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./mesh/feenox-vtk.o -MD -MP -MF ./mesh/.deps/feenox-vtk.Tpo -c -o ./mesh/feenox-vtk.o `test -f './mesh/vtk.c' || echo './'`./mesh/vtk.c\r\n"]
[36.232244, "o", "mv -f ./mesh/.deps/feenox-point.Tpo ./mesh/.deps/feenox-point.Po\r\n"]
[36.238256, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[36.239008, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/feenox-build.o -MD -MP -MF ./pdes/.deps/feenox-build.Tpo -c -o ./pdes/feenox-build.o `test -f './pdes/build.c' || echo './'`./pdes/build.c\r\n"]
[36.28645, "o", "mv -f ./mesh/.deps/feenox-prism6.Tpo ./mesh/.deps/feenox-prism6.Po"]
[36.287034, "o", "\r\n"]
[36.291111, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[36.291421, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/feenox-dirichlet.o -MD -MP -MF ./pdes/.deps/feenox-dirichlet.Tpo -c -o ./pdes/feenox-dirichlet.o `test -f './pdes/dirichlet.c' || echo './'`./pdes/dirichlet.c"]
[36.291844, "o", "\r\n"]
[36.349778, "o", "mv -f ./mesh/.deps/feenox-calculix.Tpo ./mesh/.deps/feenox-calculix.Po\r\n"]
[36.353455, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[36.353698, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/feenox-distribution.o -MD -MP -MF ./pdes/.deps/feenox-distribution.Tpo -c -o ./pdes/feenox-distribution.o `test -f './pdes/distribution.c' || echo './'`./pdes/distribution.c\r\n"]
[36.373918, "o", "mv -f ./mesh/.deps/feenox-hexa27.Tpo ./mesh/.deps/feenox-hexa27.Po\r\n"]
[36.379362, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[36.379789, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/feenox-dump.o -MD -MP -MF ./pdes/.deps/feenox-dump.Tpo -c -o ./pdes/feenox-dump.o `test -f './pdes/dump.c' || echo './'`./pdes/dump.c\r\n"]
[36.792588, "o", "mv -f ./pdes/.deps/feenox-dump.Tpo ./pdes/.deps/feenox-dump.Po"]
[36.793473, "o", "\r\n"]
[36.798508, "o", "mv -f ./pdes/.deps/feenox-dirichlet.Tpo ./pdes/.deps/feenox-dirichlet.Po"]
[36.799927, "o", "\r\n"]
[36.802213, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[36.803416, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/feenox-init.o -MD -MP -MF ./pdes/.deps/feenox-init.Tpo -c -o ./pdes/feenox-init.o `test -f './pdes/init.c' || echo './'`./pdes/init.c\r\n"]
[36.809363, "o", "mv -f ./pdes/.deps/feenox-build.Tpo ./pdes/.deps/feenox-build.Po\r\n"]
[36.810752, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[36.811729, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/feenox-gradient.o -MD -MP -MF ./pdes/.deps/feenox-gradient.Tpo -c -o ./pdes/feenox-gradient.o `test -f './pdes/gradient.c' || echo './'`./pdes/gradient.c"]
[36.81205, "o", "\r\n"]
[36.814259, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[36.814621, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/feenox-neumann.o -MD -MP -MF ./pdes/.deps/feenox-neumann.Tpo -c -o ./pdes/feenox-neumann.o `test -f './pdes/neumann.c' || echo './'`./pdes/neumann.c"]
[36.814806, "o", "\r\n"]
[36.856182, "o", "mv -f ./mesh/.deps/feenox-vtk.Tpo ./mesh/.deps/feenox-vtk.Po"]
[36.85643, "o", "\r\n"]
[36.859436, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[36.859672, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/feenox-petsc_ksp.o -MD -MP -MF ./pdes/.deps/feenox-petsc_ksp.Tpo -c -o ./pdes/feenox-petsc_ksp.o `test -f './pdes/petsc_ksp.c' || echo './'`./pdes/petsc_ksp.c\r\n"]
[37.041289, "o", "mv -f ./mesh/.deps/feenox-mesh.Tpo ./mesh/.deps/feenox-mesh.Po\r\n"]
[37.0419, "o", "mv -f ./pdes/.deps/feenox-distribution.Tpo ./pdes/.deps/feenox-distribution.Po\r\n"]
[37.04774, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[37.050163, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/feenox-petsc_snes.o -MD -MP -MF ./pdes/.deps/feenox-petsc_snes.Tpo -c -o ./pdes/feenox-petsc_snes.o `test -f './pdes/petsc_snes.c' || echo './'`./pdes/petsc_snes.c\r\n"]
[37.053652, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[37.054156, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/feenox-petsc_ts.o -MD -MP -MF ./pdes/.deps/feenox-petsc_ts.Tpo -c -o ./pdes/feenox-petsc_ts.o `test -f './pdes/petsc_ts.c' || echo './'`./pdes/petsc_ts.c\r\n"]
[37.170511, "o", "mv -f ./pdes/.deps/feenox-neumann.Tpo ./pdes/.deps/feenox-neumann.Po"]
[37.170842, "o", "\r\n"]
[37.17587, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[37.17663, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/feenox-reaction.o -MD -MP -MF ./pdes/.deps/feenox-reaction.Tpo -c -o ./pdes/feenox-reaction.o `test -f './pdes/reaction.c' || echo './'`./pdes/reaction.c\r\n"]
[37.39567, "o", "mv -f ./pdes/.deps/feenox-petsc_ksp.Tpo ./pdes/.deps/feenox-petsc_ksp.Po\r\n"]
[37.404574, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[37.404882, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/feenox-slepc_eps.o -MD -MP -MF ./pdes/.deps/feenox-slepc_eps.Tpo -c -o ./pdes/feenox-slepc_eps.o `test -f './pdes/slepc_eps.c' || echo './'`./pdes/slepc_eps.c\r\n"]
[37.464905, "o", "mv -f ./pdes/.deps/feenox-gradient.Tpo ./pdes/.deps/feenox-gradient.Po"]
[37.465526, "o", "\r\n"]
[37.467574, "o", "mv -f ./pdes/.deps/feenox-petsc_snes.Tpo ./pdes/.deps/feenox-petsc_snes.Po"]
[37.469359, "o", "\r\n"]
[37.471145, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[37.472165, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/feenox-solve.o -MD -MP -MF ./pdes/.deps/feenox-solve.Tpo -c -o ./pdes/feenox-solve.o `test -f './pdes/solve.c' || echo './'`./pdes/solve.c\r\n"]
[37.473663, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[37.474029, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/laplace/feenox-init.o -MD -MP -MF ./pdes/laplace/.deps/feenox-init.Tpo -c -o ./pdes/laplace/feenox-init.o `test -f './pdes/laplace/init.c' || echo './'`./pdes/laplace/init.c"]
[37.474184, "o", "\r\n"]
[37.548803, "o", "mv -f ./pdes/.deps/feenox-petsc_ts.Tpo ./pdes/.deps/feenox-petsc_ts.Po\r\n"]
[37.571353, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[37.571703, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/laplace/feenox-bulk.o -MD -MP -MF ./pdes/laplace/.deps/feenox-bulk.Tpo -c -o ./pdes/laplace/feenox-bulk.o `test -f './pdes/laplace/bulk.c' || echo './'`./pdes/laplace/bulk.c\r\n"]
[37.759208, "o", "mv -f ./pdes/.deps/feenox-reaction.Tpo ./pdes/.deps/feenox-reaction.Po"]
[37.760075, "o", "\r\n"]
[37.766603, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[37.769897, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/laplace/feenox-bc.o -MD -MP -MF ./pdes/laplace/.deps/feenox-bc.Tpo -c -o ./pdes/laplace/feenox-bc.o `test -f './pdes/laplace/bc.c' || echo './'`./pdes/laplace/bc.c"]
[37.77061, "o", "\r\n"]
[37.772046, "o", "mv -f ./pdes/.deps/feenox-init.Tpo ./pdes/.deps/feenox-init.Po"]
[37.772485, "o", "\r\n"]
[37.77978, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[37.780276, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/thermal/feenox-init.o -MD -MP -MF ./pdes/thermal/.deps/feenox-init.Tpo -c -o ./pdes/thermal/feenox-init.o `test -f './pdes/thermal/init.c' || echo './'`./pdes/thermal/init.c\r\n"]
[37.885736, "o", "mv -f ./pdes/.deps/feenox-slepc_eps.Tpo ./pdes/.deps/feenox-slepc_eps.Po"]
[37.885951, "o", "\r\n"]
[37.891314, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[37.891676, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/thermal/feenox-bulk.o -MD -MP -MF ./pdes/thermal/.deps/feenox-bulk.Tpo -c -o ./pdes/thermal/feenox-bulk.o `test -f './pdes/thermal/bulk.c' || echo './'`./pdes/thermal/bulk.c"]
[37.891908, "o", "\r\n"]
[37.975634, "o", "mv -f ./pdes/.deps/feenox-solve.Tpo ./pdes/.deps/feenox-solve.Po"]
[37.976041, "o", "\r\n"]
[37.981611, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[37.982579, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/thermal/feenox-bc.o -MD -MP -MF ./pdes/thermal/.deps/feenox-bc.Tpo -c -o ./pdes/thermal/feenox-bc.o `test -f './pdes/thermal/bc.c' || echo './'`./pdes/thermal/bc.c\r\n"]
[38.002885, "o", "mv -f ./pdes/laplace/.deps/feenox-init.Tpo ./pdes/laplace/.deps/feenox-init.Po"]
[38.003116, "o", "\r\n"]
[38.007266, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[38.00753, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/thermal/feenox-heatflux.o -MD -MP -MF ./pdes/thermal/.deps/feenox-heatflux.Tpo -c -o ./pdes/thermal/feenox-heatflux.o `test -f './pdes/thermal/heatflux.c' || echo './'`./pdes/thermal/heatflux.c"]
[38.007696, "o", "\r\n"]
[38.086816, "o", "mv -f ./pdes/laplace/.deps/feenox-bulk.Tpo ./pdes/laplace/.deps/feenox-bulk.Po"]
[38.087052, "o", "\r\n"]
[38.090819, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[38.091259, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/thermal/feenox-post.o -MD -MP -MF ./pdes/thermal/.deps/feenox-post.Tpo -c -o ./pdes/thermal/feenox-post.o `test -f './pdes/thermal/post.c' || echo './'`./pdes/thermal/post.c"]
[38.092282, "o", "\r\n"]
[38.138754, "o", "mv -f ./pdes/laplace/.deps/feenox-bc.Tpo ./pdes/laplace/.deps/feenox-bc.Po\r\n"]
[38.144213, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[38.147904, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/mechanical/feenox-init.o -MD -MP -MF ./pdes/mechanical/.deps/feenox-init.Tpo -c -o ./pdes/mechanical/feenox-init.o `test -f './pdes/mechanical/init.c' || echo './'`./pdes/mechanical/init.c\r\n"]
[38.269853, "o", "mv -f ./pdes/thermal/.deps/feenox-bulk.Tpo ./pdes/thermal/.deps/feenox-bulk.Po"]
[38.270139, "o", "\r\n"]
[38.275769, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[38.276129, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/mechanical/feenox-bulk.o -MD -MP -MF ./pdes/mechanical/.deps/feenox-bulk.Tpo -c -o ./pdes/mechanical/feenox-bulk.o `test -f './pdes/mechanical/bulk.c' || echo './'`./pdes/mechanical/bulk.c\r\n"]
[38.342119, "o", "mv -f ./pdes/thermal/.deps/feenox-init.Tpo ./pdes/thermal/.deps/feenox-init.Po\r\n"]
[38.348267, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[38.348863, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/mechanical/feenox-bc.o -MD -MP -MF ./pdes/mechanical/.deps/feenox-bc.Tpo -c -o ./pdes/mechanical/feenox-bc.o `test -f './pdes/mechanical/bc.c' || echo './'`./pdes/mechanical/bc.c\r\n"]
[38.373307, "o", "mv -f ./pdes/thermal/.deps/feenox-bc.Tpo ./pdes/thermal/.deps/feenox-bc.Po\r\n"]
[38.378603, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[38.378891, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/mechanical/feenox-stress.o -MD -MP -MF ./pdes/mechanical/.deps/feenox-stress.Tpo -c -o ./pdes/mechanical/feenox-stress.o `test -f './pdes/mechanical/stress.c' || echo './'`./pdes/mechanical/stress.c\r\n"]
[38.434818, "o", "mv -f ./pdes/thermal/.deps/feenox-post.Tpo ./pdes/thermal/.deps/feenox-post.Po"]
[38.435141, "o", "\r\n"]
[38.441421, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[38.442095, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/mechanical/feenox-post.o -MD -MP -MF ./pdes/mechanical/.deps/feenox-post.Tpo -c -o ./pdes/mechanical/feenox-post.o `test -f './pdes/mechanical/post.c' || echo './'`./pdes/mechanical/post.c\r\n"]
[38.450577, "o", "mv -f ./pdes/thermal/.deps/feenox-heatflux.Tpo ./pdes/thermal/.deps/feenox-heatflux.Po"]
[38.451441, "o", "\r\n"]
[38.457119, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[38.457444, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/mechanical/feenox-elastic-isotropic.o -MD -MP -MF ./pdes/mechanical/.deps/feenox-elastic-isotropic.Tpo -c -o ./pdes/mechanical/feenox-elastic-isotropic.o `test -f './pdes/mechanical/elastic-isotropic.c' || echo './'`./pdes/mechanical/elastic-isotropic.c"]
[38.457744, "o", "\r\n"]
[38.710774, "o", "mv -f ./pdes/mechanical/.deps/feenox-init.Tpo ./pdes/mechanical/.deps/feenox-init.Po"]
[38.711026, "o", "\r\n"]
[38.718051, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[38.719456, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/mechanical/feenox-elastic-plane-stress.o -MD -MP -MF ./pdes/mechanical/.deps/feenox-elastic-plane-stress.Tpo -c -o ./pdes/mechanical/feenox-elastic-plane-stress.o `test -f './pdes/mechanical/elastic-plane-stress.c' || echo './'`./pdes/mechanical/elastic-plane-stress.c\r\n"]
[38.731204, "o", "mv -f ./pdes/mechanical/.deps/feenox-bulk.Tpo ./pdes/mechanical/.deps/feenox-bulk.Po\r\n"]
[38.736574, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[38.737217, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/mechanical/feenox-elastic-plane-strain.o -MD -MP -MF ./pdes/mechanical/.deps/feenox-elastic-plane-strain.Tpo -c -o ./pdes/mechanical/feenox-elastic-plane-strain.o `test -f './pdes/mechanical/elastic-plane-strain.c' || echo './'`./pdes/mechanical/elastic-plane-strain.c\r\n"]
[38.773974, "o", "mv -f ./pdes/mechanical/.deps/feenox-bc.Tpo ./pdes/mechanical/.deps/feenox-bc.Po\r\n"]
[38.783451, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[38.784437, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/mechanical/feenox-elastic-orthotropic.o -MD -MP -MF ./pdes/mechanical/.deps/feenox-elastic-orthotropic.Tpo -c -o ./pdes/mechanical/feenox-elastic-orthotropic.o `test -f './pdes/mechanical/elastic-orthotropic.c' || echo './'`./pdes/mechanical/elastic-orthotropic.c\r\n"]
[38.821116, "o", "mv -f ./pdes/mechanical/.deps/feenox-elastic-isotropic.Tpo ./pdes/mechanical/.deps/feenox-elastic-isotropic.Po\r\n"]
[38.825806, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[38.826101, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/mechanical/feenox-expansion-isotropic.o -MD -MP -MF ./pdes/mechanical/.deps/feenox-expansion-isotropic.Tpo -c -o ./pdes/mechanical/feenox-expansion-isotropic.o `test -f './pdes/mechanical/expansion-isotropic.c' || echo './'`./pdes/mechanical/expansion-isotropic.c\r\n"]
[38.834631, "o", "mv -f ./pdes/mechanical/.deps/feenox-post.Tpo ./pdes/mechanical/.deps/feenox-post.Po\r\n"]
[38.840854, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[38.841151, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/mechanical/feenox-expansion-orthotropic.o -MD -MP -MF ./pdes/mechanical/.deps/feenox-expansion-orthotropic.Tpo -c -o ./pdes/mechanical/feenox-expansion-orthotropic.o `test -f './pdes/mechanical/expansion-orthotropic.c' || echo './'`./pdes/mechanical/expansion-orthotropic.c\r\n"]
[38.913383, "o", "mv -f ./pdes/mechanical/.deps/feenox-stress.Tpo ./pdes/mechanical/.deps/feenox-stress.Po"]
[38.914682, "o", "\r\n"]
[38.922173, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[38.923445, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/modal/feenox-init.o -MD -MP -MF ./pdes/modal/.deps/feenox-init.Tpo -c -o ./pdes/modal/feenox-init.o `test -f './pdes/modal/init.c' || echo './'`./pdes/modal/init.c\r\n"]
[39.086028, "o", "mv -f ./pdes/mechanical/.deps/feenox-elastic-plane-stress.Tpo ./pdes/mechanical/.deps/feenox-elastic-plane-stress.Po\r\n"]
[39.092497, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[39.09331, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/modal/feenox-bulk.o -MD -MP -MF ./pdes/modal/.deps/feenox-bulk.Tpo -c -o ./pdes/modal/feenox-bulk.o `test -f './pdes/modal/bulk.c' || echo './'`./pdes/modal/bulk.c\r\n"]
[39.093524, "o", "mv -f ./pdes/mechanical/.deps/feenox-elastic-plane-strain.Tpo ./pdes/mechanical/.deps/feenox-elastic-plane-strain.Po\r\n"]
[39.119351, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[39.119825, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/modal/feenox-bc.o -MD -MP -MF ./pdes/modal/.deps/feenox-bc.Tpo -c -o ./pdes/modal/feenox-bc.o `test -f './pdes/modal/bc.c' || echo './'`./pdes/modal/bc.c"]
[39.120039, "o", "\r\n"]
[39.162621, "o", "mv -f ./pdes/mechanical/.deps/feenox-expansion-isotropic.Tpo ./pdes/mechanical/.deps/feenox-expansion-isotropic.Po"]
[39.162796, "o", "\r\n"]
[39.185452, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[39.186132, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/modal/feenox-post.o -MD -MP -MF ./pdes/modal/.deps/feenox-post.Tpo -c -o ./pdes/modal/feenox-post.o `test -f './pdes/modal/post.c' || echo './'`./pdes/modal/post.c\r\n"]
[39.227268, "o", "mv -f ./pdes/mechanical/.deps/feenox-elastic-orthotropic.Tpo ./pdes/mechanical/.deps/feenox-elastic-orthotropic.Po\r\n"]
[39.235307, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[39.235366, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/neutron_diffusion/feenox-init.o -MD -MP -MF ./pdes/neutron_diffusion/.deps/feenox-init.Tpo -c -o ./pdes/neutron_diffusion/feenox-init.o `test -f './pdes/neutron_diffusion/init.c' || echo './'`./pdes/neutron_diffusion/init.c\r\n"]
[39.267537, "o", "mv -f ./pdes/mechanical/.deps/feenox-expansion-orthotropic.Tpo ./pdes/mechanical/.deps/feenox-expansion-orthotropic.Po"]
[39.267724, "o", "\r\n"]
[39.271977, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[39.272456, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/neutron_diffusion/feenox-bulk.o -MD -MP -MF ./pdes/neutron_diffusion/.deps/feenox-bulk.Tpo -c -o ./pdes/neutron_diffusion/feenox-bulk.o `test -f './pdes/neutron_diffusion/bulk.c' || echo './'`./pdes/neutron_diffusion/bulk.c\r\n"]
[39.475244, "o", "mv -f ./pdes/modal/.deps/feenox-bulk.Tpo ./pdes/modal/.deps/feenox-bulk.Po\r\n"]
[39.479281, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[39.479813, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/neutron_diffusion/feenox-bc.o -MD -MP -MF ./pdes/neutron_diffusion/.deps/feenox-bc.Tpo -c -o ./pdes/neutron_diffusion/feenox-bc.o `test -f './pdes/neutron_diffusion/bc.c' || echo './'`./pdes/neutron_diffusion/bc.c\r\n"]
[39.52075, "o", "mv -f ./mesh/.deps/feenox-gmsh.Tpo ./mesh/.deps/feenox-gmsh.Po"]
[39.521289, "o", "\r\n"]
[39.524725, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[39.525232, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/neutron_diffusion/feenox-post.o -MD -MP -MF ./pdes/neutron_diffusion/.deps/feenox-post.Tpo -c -o ./pdes/neutron_diffusion/feenox-post.o `test -f './pdes/neutron_diffusion/post.c' || echo './'`./pdes/neutron_diffusion/post.c\r\n"]
[39.525535, "o", "mv -f ./pdes/modal/.deps/feenox-init.Tpo ./pdes/modal/.deps/feenox-init.Po\r\n"]
[39.533331, "o", "gcc -DPACKAGE_NAME=\\\"feenox\\\" -DPACKAGE_TARNAME=\\\"feenox\\\" -DPACKAGE_VERSION=\\\"v0.2.5-g954ebea\\\" -DPACKAGE_STRING=\\\"feenox\\ v0.2.5-g954ebea\\\" -DPACKAGE_BUGREPORT=\\\"[email protected]\\\" -DPACKAGE_URL=\\\"\\\" -DPACKAGE=\\\"feenox\\\" -DVERSION=\\\"v0.2.5-g954ebea\\\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYSCONF=1 -DHAVE_CLOCK_GETTIME=1 -DHAVE_GETRUSAGE=1 -DHAVE_ASPRINTF=1 -DHAVE_SUNDIALS_SUNDIALS_TYPES_H=1 -DHAVE_IDA_IDA_H=1 -DHAVE_SUNDIALS_SUNDIALS_LINEARSOLVER_H=1 -DHAVE_LIBSUNDIALS_IDA=1 -DHAVE_LIBSUNDIALS_NVECSERIAL=1 -DHAVE_SUNDIALS=1 -DHAVE_PETSC=1 -DHAVE_SLEPC=1 -DHAVE_LIBGSLCBLAS=1 -DHAVE_LIBGSL=1 -I. -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-s"]
[39.534536, "o", "tatic/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -MT ./pdes/neutron_diffusion/feenox-parser.o -MD -MP -MF ./pdes/neutron_diffusion/.deps/feenox-parser.Tpo -c -o ./pdes/neutron_diffusion/feenox-parser.o `test -f './pdes/neutron_diffusion/parser.c' || echo './'`./pdes/neutron_diffusion/parser.c\r\n"]
[39.547784, "o", "mv -f ./pdes/modal/.deps/feenox-bc.Tpo ./pdes/modal/.deps/feenox-bc.Po\r\n"]
[39.66482, "o", "mv -f ./pdes/modal/.deps/feenox-post.Tpo ./pdes/modal/.deps/feenox-post.Po\r\n"]
[39.704908, "o", "mv -f ./pdes/neutron_diffusion/.deps/feenox-bulk.Tpo ./pdes/neutron_diffusion/.deps/feenox-bulk.Po\r\n"]
[39.773121, "o", "mv -f ./pdes/neutron_diffusion/.deps/feenox-init.Tpo ./pdes/neutron_diffusion/.deps/feenox-init.Po\r\n"]
[39.808747, "o", "mv -f ./pdes/neutron_diffusion/.deps/feenox-bc.Tpo ./pdes/neutron_diffusion/.deps/feenox-bc.Po\r\n"]
[39.825555, "o", "mv -f ./pdes/neutron_diffusion/.deps/feenox-parser.Tpo ./pdes/neutron_diffusion/.deps/feenox-parser.Po\r\n"]
[39.849198, "o", "mv -f ./pdes/neutron_diffusion/.deps/feenox-post.Tpo ./pdes/neutron_diffusion/.deps/feenox-post.Po\r\n"]
[39.852886, "o", "gcc -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/include -I/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/include -I/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/include -O3 -o feenox ./feenox-feenox.o ./feenox-version.o ./contrib/feenox-kdtree.o ./flow/feenox-init.o ./flow/feenox-abort.o ./flow/feenox-conditional.o ./flow/feenox-error.o ./flow/feenox-define.o ./flow/feenox-getptr.o ./flow/feenox-cleanup.o ./flow/feenox-instruction.o ./flow/feenox-step.o ./flow/feenox-run.o ./parser/feenox-parser.o ./parser/feenox-auxiliary.o ./io/feenox-file.o ./io/feenox-print.o ./math/feenox-alias.o ./math/feenox-assignment.o ./math/feenox-builtin_functions.o ./math/feenox-builtin_functionals.o ./math/feenox-builtin_vectorfunctions.o ./math/feenox-dae.o ./math/feenox-expressions.o "]
[39.852927, "o", "./math/feenox-fit.o ./math/feenox-matrix.o ./math/feenox-function.o ./math/feenox-vector.o ./mesh/feenox-init.o ./mesh/feenox-geometry.o ./mesh/feenox-neighbors.o ./mesh/feenox-boundary_condition.o ./mesh/feenox-physical_group.o ./mesh/feenox-interpolate.o ./mesh/feenox-material.o ./mesh/feenox-element.o ./mesh/feenox-cell.o ./mesh/feenox-fem.o ./mesh/feenox-write.o ./mesh/feenox-integrate.o ./mesh/feenox-extrema.o ./mesh/feenox-line2.o ./mesh/feenox-line3.o ./mesh/feenox-triang3.o ./mesh/feenox-triang6.o ./mesh/feenox-quad4.o ./mesh/feenox-quad8.o ./mesh/feenox-quad9.o ./mesh/feenox-tet4.o ./mesh/feenox-tet10.o ./mesh/feenox-hexa8.o ./mesh/feenox-hexa20.o ./mesh/feenox-hexa27.o ./mesh/feenox-prism6.o ./mesh/feenox-prism15.o ./mesh/feenox-point.o ./mesh/feenox-mesh.o ./mesh/feenox-gmsh.o ./mesh/feenox-calculix.o ./mesh/feenox-vtk.o ./pdes/feenox-build.o ./pdes/feenox-dirichlet.o ./pdes/feenox-distribution.o ./pdes/feenox-dump.o ./pdes/feenox-init.o ./pdes/feenox-gradient.o ./pdes/feenox-neumann.o ./pdes/feeno"]
[39.853049, "o", "x-petsc_ksp.o ./pdes/feenox-petsc_snes.o ./pdes/feenox-petsc_ts.o ./pdes/feenox-reaction.o ./pdes/feenox-slepc_eps.o ./pdes/feenox-solve.o ./pdes/laplace/feenox-init.o ./pdes/laplace/feenox-bulk.o ./pdes/laplace/feenox-bc.o ./pdes/thermal/feenox-init.o ./pdes/thermal/feenox-bulk.o ./pdes/thermal/feenox-bc.o ./pdes/thermal/feenox-heatflux.o ./pdes/thermal/feenox-post.o ./pdes/mechanical/feenox-init.o ./pdes/mechanical/feenox-bulk.o ./pdes/mechanical/feenox-bc.o ./pdes/mechanical/feenox-stress.o ./pdes/mechanical/feenox-post.o ./pdes/mechanical/feenox-elastic-isotropic.o ./pdes/mechanical/feenox-elastic-plane-stress.o ./pdes/mechanical/feenox-elastic-plane-strain.o ./pdes/mechanical/feenox-elastic-orthotropic.o ./pdes/mechanical/feenox-expansion-isotropic.o ./pdes/mechanical/feenox-expansion-orthotropic.o ./pdes/modal/feenox-init.o ./pdes/modal/feenox-bulk.o ./pdes/modal/feenox-bc.o ./pdes/modal/feenox-post.o ./pdes/neutron_diffusion/feenox-init.o ./pdes/neutron_diffusion/feenox-bulk.o ./pdes/neutron_diffusion/"]
[39.85312, "o", "feenox-bc.o ./pdes/neutron_diffusion/feenox-post.o ./pdes/neutron_diffusion/feenox-parser.o -Wl,-rpath,/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/lib -L/home/gtheler/codigos/feenox/dist/slepc-3.16.1/linux-serial-static/lib -lslepc -L/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/lib -Wl,-rpath,/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/lib -L/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/lib -lpetsc -lf2clapack -lf2cblas -lpthread -lm -lquadmath -ldl -L/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/lib -Wl,-rpath,/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/lib -L/home/gtheler/codigos/feenox/dist/petsc-3.16.3/linux-serial-static/lib -lpetsc -lf2clapack -lf2cblas -lpthread -lm -lquadmath -ldl -lgsl -lgslcblas -lsundials_nvecserial -lsundials_ida -lm \r\n"]
[40.563075, "o", "make[1]: Leaving directory '/home/gtheler/feenox/src'\r\n"]
[40.565888, "o", "make[1]: Entering directory '/home/gtheler/feenox'\r\ncp -r src/feenox .\r\n"]
[40.590914, "o", "make[1]: Leaving directory '/home/gtheler/feenox'\r\n"]
[40.591908, "o", "\u001b[?2004h\u001b]0;gtheler@tom: ~/feenox\u0007\u001b[01;30mgtheler\u001b[00m@\u001b[01;33mtom\u001b[00m:~/feenox$ "]
[40.923952, "o", "m"]
[41.011487, "o", "a"]
[41.105587, "o", "k"]
[41.218768, "o", "e"]
[41.324234, "o", " "]
[41.460696, "o", "c"]
[41.529812, "o", "h"]
[41.653978, "o", "e"]
[41.70795, "o", "c"]
[41.764819, "o", "k"]
[41.924456, "o", "\r\n"]
[41.924874, "o", "\u001b[?2004l\r"]
[41.948948, "o", "Making check in src\r\n"]
[42.094941, "o", "make[1]: Entering directory '/home/gtheler/feenox/src'\r\nmake[1]: Nothing to be done for 'check'.\r\nmake[1]: Leaving directory '/home/gtheler/feenox/src'\r\n"]
[42.098409, "o", "make[1]: Entering directory '/home/gtheler/feenox'\r\ncp -r src/feenox .\r\n"]
[42.164461, "o", "make check-TESTS\r\n"]
[42.168349, "o", "make[2]: Entering directory '/home/gtheler/feenox'\r\n"]
[42.185083, "o", "make[3]: Entering directory '/home/gtheler/feenox'\r\n"]
[42.195106, "o", "\u001b[1;32mXFAIL\u001b[m: tests/abort.sh\r\n"]
[42.208582, "o", "\u001b[0;32mPASS\u001b[m: tests/algebraic_expr.sh\r\n"]
[42.326087, "o", "\u001b[0;32mPASS\u001b[m: tests/beam-modal.sh\r\n"]
[42.441493, "o", "\u001b[0;32mPASS\u001b[m: tests/beam-ortho.sh\r\n"]
[42.451995, "o", "\u001b[0;32mPASS\u001b[m: tests/builtin.sh\r\n"]
[42.486402, "o", "\u001b[0;32mPASS\u001b[m: tests/cylinder-traction-force.sh\r\n"]
[42.495536, "o", "\u001b[0;32mPASS\u001b[m: tests/default_argument_value.sh\r\n"]
[42.576178, "o", "\u001b[0;32mPASS\u001b[m: tests/expressions_constants.sh\r\n"]
[42.589588, "o", "\u001b[0;32mPASS\u001b[m: tests/expressions_variables.sh\r\n"]
[42.60435, "o", "\u001b[0;32mPASS\u001b[m: tests/expressions_functions.sh\r\n"]
[42.620111, "o", "\u001b[0;32mPASS\u001b[m: tests/exp.sh\r\n"]
[49.103206, "o", "\u001b[0;32mPASS\u001b[m: tests/i-beam-euler-bernoulli.sh\r\n"]
[49.568224, "o", "\u001b[0;32mPASS\u001b[m: tests/iaea-pwr.sh\r\n"]
[49.585695, "o", "\u001b[0;32mPASS\u001b[m: tests/iterative.sh\r\n"]
[49.607985, "o", "\u001b[0;32mPASS\u001b[m: tests/fit.sh\r\n"]
[49.6338, "o", "\u001b[0;32mPASS\u001b[m: tests/function_algebraic.sh\r\n"]
[49.68125, "o", "\u001b[0;32mPASS\u001b[m: tests/function_data.sh\r\n"]
[49.694949, "o", "\u001b[0;32mPASS\u001b[m: tests/function_file.sh\r\n"]
[49.709129, "o", "\u001b[0;32mPASS\u001b[m: tests/function_vectors.sh\r\n"]
[49.720643, "o", "\u001b[0;32mPASS\u001b[m: tests/integral.sh\r\n"]
[49.900553, "o", "\u001b[0;32mPASS\u001b[m: tests/laplace2d.sh\r\n"]
[49.91374, "o", "\u001b[0;32mPASS\u001b[m: tests/materials.sh\r\n"]
[49.945072, "o", "\u001b[0;32mPASS\u001b[m: tests/mesh.sh\r\n"]
[49.989377, "o", "\u001b[0;32mPASS\u001b[m: tests/moment-of-inertia.sh\r\n"]
[50.073993, "o", "\u001b[0;32mPASS\u001b[m: tests/nafems-le1.sh\r\n"]
[50.94165, "o", "\u001b[0;32mPASS\u001b[m: tests/nafems-le10.sh\r\n"]
[52.801624, "o", "\u001b[0;32mPASS\u001b[m: tests/nafems-le11.sh\r\n"]
[54.752793, "o", "\u001b[0;32mPASS\u001b[m: tests/nafems-t1-4.sh\r\n"]
[54.805154, "o", "\u001b[0;32mPASS\u001b[m: tests/nafems-t2-3.sh\r\n"]
[54.832778, "o", "\u001b[0;32mPASS\u001b[m: tests/neutron_diffusion_src.sh\r\n"]
[54.863282, "o", "\u001b[0;32mPASS\u001b[m: tests/neutron_diffusion_keff.sh\r\n"]
[56.592722, "o", "\u001b[0;32mPASS\u001b[m: tests/parallelepiped.sh\r\n"]
[56.635022, "o", "\u001b[0;32mPASS\u001b[m: tests/point-kinetics.sh\r\n"]
[56.652097, "o", "\u001b[0;32mPASS\u001b[m: tests/print.sh\r\n"]
[57.125274, "o", "\u001b[0;32mPASS\u001b[m: tests/thermal-1d.sh\r\n"]
[57.178573, "o", "\u001b[0;32mPASS\u001b[m: tests/thermal-2d.sh\r\n"]
[57.200215, "o", "\u001b[0;32mPASS\u001b[m: tests/trig.sh\r\n"]
[58.71764, "o", "\u001b[0;32mPASS\u001b[m: tests/two-cubes-isotropic.sh\r\n"]
[60.289759, "o", "\u001b[0;32mPASS\u001b[m: tests/two-cubes-orthotropic.sh\r\n"]
[60.305855, "o", "\u001b[0;32mPASS\u001b[m: tests/vector.sh\r\n"]
[60.321502, "o", "\u001b[1;32mXFAIL\u001b[m: tests/xfail-few-properties-ortho-young.sh\r\n"]
[60.33584, "o", "\u001b[1;32mXFAIL\u001b[m: tests/xfail-few-properties-ortho-poisson.sh\r\n"]
[60.350645, "o", "\u001b[1;32mXFAIL\u001b[m: tests/xfail-few-properties-ortho-shear.sh\r\n"]
[60.388574, "o", "\u001b[0;32m============================================================================\u001b[m\r\n\u001b[0;32mTestsuite summary for feenox v0.2.5-g954ebea\u001b[m\r\n\u001b[0;32m============================================================================\u001b[m\r\n"]
[60.388734, "o", "\u001b[1m# TOTAL: 43\u001b[m\r\n\u001b[0;32m# PASS: 39\u001b[m\r\n"]
[60.388817, "o", "# SKIP: 0\r\n\u001b[1;32m# XFAIL: 4\u001b[m\r\n"]
[60.388955, "o", "# FAIL: 0\r\n# XPASS: 0\r\n# ERROR: 0\r\n\u001b[0;32m============================================================================\u001b[m\r\n"]
[60.389232, "o", "make[3]: Leaving directory '/home/gtheler/feenox'\r\n"]
[60.389757, "o", "make[2]: Leaving directory '/home/gtheler/feenox'\r\n"]
[60.389916, "o", "make[1]: Leaving directory '/home/gtheler/feenox'\r\n"]
[60.390527, "o", "\u001b[?2004h\u001b]0;gtheler@tom: ~/feenox\u0007\u001b[01;30mgtheler\u001b[00m@\u001b[01;33mtom\u001b[00m:~/feenox$ "]
[61.065898, "o", "s"]
[61.180135, "o", "u"]
[61.272654, "o", "d"]
[61.402741, "o", "o"]
[61.545547, "o", " "]
[61.705154, "o", "m"]
[61.865345, "o", "a"]
[61.924338, "o", "k"]
[62.052078, "o", "e"]
[62.127473, "o", " "]
[62.29719, "o", "i"]
[62.380339, "o", "n"]
[62.444857, "o", "s"]
[62.532768, "o", "t"]
[62.587789, "o", "a"]
[62.652192, "o", "l"]
[62.797446, "o", "l"]
[62.90792, "o", "\r\n"]
[62.908293, "o", "\u001b[?2004l\r"]
[62.929901, "o", "[sudo] password for gtheler: "]
[64.042009, "o", "\r\n"]
[64.116907, "o", "Making install in src\r\n"]
[64.216258, "o", "make[1]: Entering directory '/home/gtheler/feenox/src'\r\n"]
[64.310496, "o", "gmake[2]: Entering directory '/home/gtheler/feenox/src'\r\n"]
[64.312135, "o", " /usr/bin/mkdir -p '/usr/local/bin'\r\n"]
[64.316146, "o", " /usr/bin/install -c feenox '/usr/local/bin'\r\n"]
[64.343045, "o", "gmake[2]: Nothing to be done for 'install-data-am'.\r\ngmake[2]: Leaving directory '/home/gtheler/feenox/src'\r\n"]
[64.343743, "o", "make[1]: Leaving directory '/home/gtheler/feenox/src'\r\n"]
[64.347365, "o", "make[1]: Entering directory '/home/gtheler/feenox'\r\ncp -r src/feenox .\r\n"]
[64.428984, "o", "make[2]: Entering directory '/home/gtheler/feenox'\r\nmake[2]: Nothing to be done for 'install-exec-am'.\r\nmake[2]: Nothing to be done for 'install-data-am'.\r\nmake[2]: Leaving directory '/home/gtheler/feenox'\r\n"]
[64.42933, "o", "make[1]: Leaving directory '/home/gtheler/feenox'\r\n"]
[64.433705, "o", "\u001b[?2004h\u001b]0;gtheler@tom: ~/feenox\u0007\u001b[01;30mgtheler\u001b[00m@\u001b[01;33mtom\u001b[00m:~/feenox$ "]
[65.992561, "o", "f"]
[66.040559, "o", "e"]
[66.230098, "o", "\u0007enox"]
[66.642699, "o", " "]
[66.755683, "o", "-"]
[67.53085, "o", "v"]
[67.728611, "o", "\r\n\u001b[?2004l\r"]
[67.730646, "o", "FeenoX v0.2.5-g954ebea-dirty \r\na free no-fee no-X uniX-like finite-element(ish) computational engineering tool\r\n\r\nCopyright (C) 2009--2022 jeremy theler\r\nGNU General Public License v3+, https://www.gnu.org/licenses/gpl.html. \r\nFeenoX is free software: you are free to change and redistribute it.\r\nThere is NO WARRANTY, to the extent permitted by law.\r\n"]
[67.73113, "o", "\u001b[?2004h\u001b]0;gtheler@tom: ~/feenox\u0007\u001b[01;30mgtheler\u001b[00m@\u001b[01;33mtom\u001b[00m:~/feenox$ "]
[68.579968, "o", "f"]
[68.611817, "o", "e"]
[68.704164, "o", "\u0007enox"]
[69.124323, "o", " "]
[69.269402, "o", "-"]