forked from mahdadt/WRF-PUCM-PF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.compile
3028 lines (3025 loc) · 562 KB
/
log.compile
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
None of WRF_EM_CORE, WRF_NMM_CORE,
specified in shell environment....
copying Registry/Registry.EM to Registry/Registry
Compiling: WRF_EM_CORE .
setting parallel make -j 2
make -i -r MODULE_DIRS="-I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include " ext
make[1]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF'
--------------------------------------
( cd frame ; make -i -r externals )
make[2]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame'
( cd /home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/ioapi_share ; \
make -i -r NATIVE_RWORDSIZE="4" RWORDSIZE="4" AR="ar" ARFLAGS="ru" )
make[3]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/ioapi_share'
( /bin/rm -f ../../inc/wrf_io_flags.h foo_io_flags.h; \
/bin/cp wrf_io_flags.h foo_io_flags.h; \
if [ 4 -ne 4 ] ; then \
/bin/rm -f foo_io_flags.h; \
sed -e 's/104/105/' wrf_io_flags.h > foo_io_flags.h ;\
fi ; \
/bin/mv foo_io_flags.h ../../inc/wrf_io_flags.h )
/bin/rm -f ../../inc/wrf_status_codes.h
/bin/cp wrf_status_codes.h ../../inc
make[3]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/ioapi_share'
( cd /home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib_share ; \
make -j 2 CC="gcc" CFLAGS="-w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0" RM="rm -f" RANLIB="ranlib" CPP="/lib/cpp -C -P" \
FC="gfortran -I. -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 " TRADFLAG="-traditional" AR="ar" ARFLAGS="ru" archive)
make[3]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib_share'
make[4]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib_share'
rm -f io_grib_share.o
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c get_region_center.c
/lib/cpp -C -P -traditional -I. io_grib_share.F > io_grib_share.f90
gfortran -I. -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I. -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -c io_grib_share.f90
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c gridnav.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c open_file.c
ar ru ./libio_grib_share.a io_grib_share.o get_region_center.o gridnav.o open_file.o
ar: `u' modifier ignored since `D' is the default (see `U')
ar: creating ./libio_grib_share.a
ranlib ./libio_grib_share.a
make[4]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib_share'
make[3]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib_share'
( cd /home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib1 ; \
make -j 2 CC="gcc" CFLAGS="-w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0" RM="rm -f" RANLIB="ranlib" CPP="/lib/cpp -C -P" \
FC="gfortran -I. -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 " TRADFLAG="-traditional" AR="ar" ARFLAGS="ru" archive)
make[3]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib1'
Doing make archive on library subdirectory MEL_grib1
make[4]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib1/MEL_grib1'
make[5]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib1/MEL_grib1'
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c FTP_getfile.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c apply_bitmap.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c display_gribhdr.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c gbyte.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c grib_dec.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c grib_enc.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c grib_seek.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c gribgetbds.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c gribgetbms.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c gribgetgds.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c gribgetpds.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c gribhdr2file.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c gribputbds.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c gribputgds.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c gribputpds.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c hdr_print.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c init_dec_struct.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c init_enc_struct.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c init_gribhdr.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c init_struct.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c ld_dec_lookup.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c ld_enc_input.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c ld_enc_lookup.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c ld_grib_origctrs.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c make_default_grbfn.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c make_grib_log.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c map_lvl.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c map_parm.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c pack_spatial.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c prt_inp_struct.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c upd_child_errmsg.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c prt_badmsg.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c swap.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c grib_uthin.c
gcc -I. -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c set_bytes.c
ar ru ../libio_grib1.a FTP_getfile.o apply_bitmap.o display_gribhdr.o gbyte.o grib_dec.o grib_enc.o grib_seek.o gribgetbds.o gribgetbms.o gribgetgds.o gribgetpds.o gribhdr2file.o gribputbds.o gribputgds.o gribputpds.o hdr_print.o init_dec_struct.o init_enc_struct.o init_gribhdr.o init_struct.o ld_dec_lookup.o ld_enc_input.o ld_enc_lookup.o ld_grib_origctrs.o make_default_grbfn.o make_grib_log.o map_lvl.o map_parm.o pack_spatial.o prt_inp_struct.o upd_child_errmsg.o prt_badmsg.o swap.o grib_uthin.o set_bytes.o
ar: `u' modifier ignored since `D' is the default (see `U')
ar: creating ../libio_grib1.a
ranlib ../libio_grib1.a
make[5]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib1/MEL_grib1'
make[4]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib1/MEL_grib1'
Doing make archive on library subdirectory grib1_util
make[4]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib1/grib1_util'
make[5]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib1/grib1_util'
gcc -I. -I../MEL_grib1 -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c alloc_2d.c
gcc -I. -I../MEL_grib1 -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c read_grib.c
gcc -I. -I../MEL_grib1 -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c write_grib.c
ar ru ../libio_grib1.a alloc_2d.o read_grib.o write_grib.o
ar: `u' modifier ignored since `D' is the default (see `U')
ranlib ../libio_grib1.a
make[5]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib1/grib1_util'
make[4]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib1/grib1_util'
Doing make archive on library subdirectory WGRIB
make[4]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib1/WGRIB'
gcc -c -O wgrib_main.c
gcc -c -O seekgrib.c
gcc -c -O ibm2flt.c
gcc -c -O readgrib.c
gcc -c -O intpower.c
gcc -c -O cnames.c
gcc -c -O BDSunpk.c
gcc -c -O flt2ieee.c
gcc -c -O wrtieee.c
gcc -c -O levels.c
gcc -c -O PDStimes.c
gcc -c -O missing.c
gcc -c -O nceptable_reanal.c
gcc -c -O nceptable_opn.c
gcc -c -O ensemble.c
gcc -c -O ombtable.c
gcc -c -O ec_ext.c
gcc -c -O gribtable.c
gcc -c -O gds_grid.c
gcc -c -O PDS_date.c
gcc -c -O ectable_128.c
gcc -c -O ectable_129.c
gcc -c -O ectable_130.c
gcc -c -O ectable_131.c
gcc -c -O ectable_140.c
gcc -c -O ectable_150.c
gcc -c -O ectable_151.c
gcc -c -O ectable_160.c
gcc -c -O ectable_170.c
gcc -c -O ectable_180.c
gcc -c -O nceptab_129.c
gcc -c -O dwdtable_002.c
gcc -c -O dwdtable_201.c
gcc -c -O dwdtable_202.c
gcc -c -O dwdtable_203.c
gcc -c -O cptectable_254.c
gcc -c -O nceptab_130.c
gcc -c -O nceptab_131.c
gcc -o wgrib.exe wgrib_main.o seekgrib.o ibm2flt.o readgrib.o intpower.o cnames.o BDSunpk.o flt2ieee.o wrtieee.o levels.o PDStimes.o missing.o nceptable_reanal.o nceptable_opn.o ensemble.o ombtable.o ec_ext.o gribtable.o gds_grid.o PDS_date.o ectable_128.o ectable_129.o ectable_130.o ectable_131.o ectable_140.o ectable_150.o ectable_151.o ectable_160.o ectable_170.o ectable_180.o nceptab_129.o dwdtable_002.o dwdtable_201.o dwdtable_202.o dwdtable_203.o cptectable_254.o nceptab_130.o nceptab_131.o #-lm
( cd .. ; \rm -f wgrib.exe ; \ln -sf WGRIB/wgrib.exe wgrib.exe ; cd WGRIB )
make[4]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib1/WGRIB'
make[4]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib1'
gcc -I. -I./MEL_grib1 -Igrib1_util -I../io_grib_share -I../ -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c grib1_routines.c
gcc -I. -I./MEL_grib1 -Igrib1_util -I../io_grib_share -I../ -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c gribmap.c
rm -f io_grib1.o
/lib/cpp -C -P -traditional -I. -I./MEL_grib1 -Igrib1_util -I../io_grib_share -I../ io_grib1.F > io_grib1.f90
gfortran -I. -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I. -I./MEL_grib1 -Igrib1_util -I../io_grib_share -I../ -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -c io_grib1.f90
gcc -I. -I./MEL_grib1 -Igrib1_util -I../io_grib_share -I../ -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c trim.c
ar ru ./libio_grib1.a grib1_routines.o gribmap.o io_grib1.o trim.o
ar: `u' modifier ignored since `D' is the default (see `U')
ranlib ./libio_grib1.a
make[4]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib1'
make[3]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_grib1'
( cd /home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int ; \
make -j 2 CC="mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK " RM="rm -f" RANLIB="ranlib" CPP="/lib/cpp -C -P" \
FC="mpif90 -f90=gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 " FGREP="fgrep -iq" \
TRADFLAG="-traditional" AR="ar" ARFLAGS="ru" ARCHFLAGS="-DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0" all )
make[3]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int'
rm -f module_internal_header_util.f
awk '{print "#define", toupper($4), $6}' < ../../inc/intio_tags.h > io_int_idx_tags.h
cp ../../frame/module_internal_header_util.F mod_int_hdr_util.b
/lib/cpp -C -P -traditional -I../../inc -I../ioapi_share mod_int_hdr_util.b > module_internal_header_util.f
mpif90 -f90=gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o module_io_int_idx.o -c module_io_int_idx.f90
rm -f mod_int_hdr_util.b
/lib/cpp -C -P -traditional -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 module_io_int_read.F90 > module_io_int_read.f
Diffwrf io_int will be built later on in this compile. No need to rerun compile.
Diffwrf io_int will be built later on in this compile. No need to rerun compile.
Diffwrf io_int will be built later on in this compile. No need to rerun compile.
Diffwrf io_int will be built later on in this compile. No need to rerun compile.
Diffwrf io_int will be built later on in this compile. No need to rerun compile.
Diffwrf io_int will be built later on in this compile. No need to rerun compile.
mpif90 -f90=gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o module_internal_header_util.o -c module_internal_header_util.f
mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -o io_int_idx.o -c io_int_idx.c
mpif90 -f90=gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../../frame -o module_io_int_read.o -c module_io_int_read.f
/lib/cpp -C -P -traditional -I../../inc -I../ioapi_share io_int.F90 | m4 -Uinclude -Uindex -Ulen - > io_int.f
mpif90 -f90=gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../../inc -I../ioapi_share -o io_int.o -c io_int.f
rm -f libwrfio_int.a
if [ `echo "mpif90 -f90=gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 " | awk '{print $1}'` = "gfortran" ] ; then \
echo removing external declaration of iargc for gfortran ; \
/lib/cpp -C -P -traditional -I../ioapi_share diffwrf.F90 | \
sed '/integer *, *external.*iargc/d' > diffwrf.f ; \
else \
/lib/cpp -C -P -traditional -I../ioapi_share diffwrf.F90 > diffwrf.f ; \
fi ; \
mpif90 -f90=gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -c -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../ioapi_share diffwrf.f ; \
ar ru libwrfio_int.a io_int.o io_int_idx.o module_io_int_idx.o module_io_int_read.o
ar: `u' modifier ignored since `D' is the default (see `U')
ar: creating libwrfio_int.a
ranlib libwrfio_int.a
mpif90 -f90=gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o test_io_idx test_io_idx.f90 -L. -lwrfio_int
if [ -f ../../frame/pack_utils.o -a -f ../../frame/clog.o ] ; then \
mpif90 -f90=gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../ioapi_share -o diffwrf diffwrf.f \
../../frame/pack_utils.o ../../frame/module_internal_header_util.o ../../frame/module_driver_constants.o ../../frame/module_machine.o ../../frame/module_wrf_error.o ../../frame/wrf_debug.o libwrfio_int.a ; \
fi
make[3]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int'
( cd /home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 ; \
make -j 2 FC="gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 " RANLIB="ranlib" \
CPP="/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I. -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -traditional" AR="ar" ARFLAGS="ru" )
make[3]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90'
/bin/rm -f ESMF_Base.o
/bin/rm -f ESMF_Fraction.o
sed -e "/\!.*'/s/'//g" ESMF_Base.F90 > ESMF_Base.b
sed -e "/\!.*'/s/'//g" ESMF_Fraction.F90 > ESMF_Fraction.b
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I. -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -traditional -C -P -I. ESMF_Fraction.b > ESMF_Fraction.f
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I. -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -traditional -C -P -I. ESMF_Base.b > ESMF_Base.f
/bin/rm -f ESMF_Fraction.b
gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o ESMF_Fraction.o -c ESMF_Fraction.f
/bin/rm -f ESMF_Base.b
gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o ESMF_Base.o -c ESMF_Base.f
/bin/rm -f ESMF_BaseTime.o
sed -e "/\!.*'/s/'//g" ESMF_BaseTime.F90 > ESMF_BaseTime.b
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I. -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -traditional -C -P -I. ESMF_BaseTime.b > ESMF_BaseTime.f
/bin/rm -f ESMF_BaseTime.b
gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o ESMF_BaseTime.o -c ESMF_BaseTime.f
/bin/rm -f ESMF_Calendar.o
sed -e "/\!.*'/s/'//g" ESMF_Calendar.F90 > ESMF_Calendar.b
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I. -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -traditional -C -P -I. ESMF_Calendar.b > ESMF_Calendar.f
/bin/rm -f ESMF_Calendar.b
gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o ESMF_Calendar.o -c ESMF_Calendar.f
/bin/rm -f ESMF_TimeInterval.o
/bin/rm -f ESMF_Stubs.o
sed -e "/\!.*'/s/'//g" ESMF_TimeInterval.F90 > ESMF_TimeInterval.b
sed -e "/\!.*'/s/'//g" ESMF_Stubs.F90 > ESMF_Stubs.b
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I. -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -traditional -C -P -I. ESMF_Stubs.b > ESMF_Stubs.f
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I. -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -traditional -C -P -I. ESMF_TimeInterval.b > ESMF_TimeInterval.f
/bin/rm -f ESMF_Stubs.b
/bin/rm -f ESMF_TimeInterval.b
gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o ESMF_Stubs.o -c ESMF_Stubs.f
gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o ESMF_TimeInterval.o -c ESMF_TimeInterval.f
/bin/rm -f ESMF_Time.o
sed -e "/\!.*'/s/'//g" ESMF_Time.F90 > ESMF_Time.b
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I. -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -traditional -C -P -I. ESMF_Time.b > ESMF_Time.f
/bin/rm -f ESMF_Time.b
gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o ESMF_Time.o -c ESMF_Time.f
/bin/rm -f ESMF_Alarm.o
sed -e "/\!.*'/s/'//g" ESMF_Alarm.F90 > ESMF_Alarm.b
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I. -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -traditional -C -P -I. ESMF_Alarm.b > ESMF_Alarm.f
/bin/rm -f ESMF_Alarm.b
gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o ESMF_Alarm.o -c ESMF_Alarm.f
/bin/rm -f ESMF_Clock.o
sed -e "/\!.*'/s/'//g" ESMF_Clock.F90 > ESMF_Clock.b
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I. -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -traditional -C -P -I. ESMF_Clock.b > ESMF_Clock.f
/bin/rm -f ESMF_Clock.b
gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o ESMF_Clock.o -c ESMF_Clock.f
/bin/rm -f Meat.o
/bin/rm -f ESMF_AlarmClock.o
sed -e "/\!.*'/s/'//g" Meat.F90 > Meat.b
sed -e "/\!.*'/s/'//g" ESMF_AlarmClock.F90 > ESMF_AlarmClock.b
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I. -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -traditional -C -P -I. ESMF_AlarmClock.b > ESMF_AlarmClock.f
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I. -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -traditional -C -P -I. Meat.b > Meat.f
/bin/rm -f ESMF_AlarmClock.b
/bin/rm -f Meat.b
gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o ESMF_AlarmClock.o -c ESMF_AlarmClock.f
gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o Meat.o -c Meat.f
/bin/rm -f ESMF_Mod.o
sed -e "/\!.*'/s/'//g" ESMF_Mod.F90 > ESMF_Mod.b
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I. -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -traditional -C -P -I. ESMF_Mod.b > ESMF_Mod.f
/bin/rm -f ESMF_Mod.b
gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o ESMF_Mod.o -c ESMF_Mod.f
/bin/rm -f module_symbols_util.o
sed -e "/\!.*'/s/'//g" module_symbols_util.F90 > module_symbols_util.b
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I. -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -traditional -C -P -I. module_symbols_util.b > module_symbols_util.f
/bin/rm -f module_symbols_util.b
gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o module_symbols_util.o -c module_symbols_util.f
/bin/rm -f module_utility.o
sed -e "/\!.*'/s/'//g" module_utility.F90 > module_utility.b
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I. -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -traditional -C -P -I. module_utility.b > module_utility.f
/bin/rm -f module_utility.b
gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o module_utility.o -c module_utility.f
/bin/rm -f libesmf_time.a
if [ "ar" != "lib.exe" ] ; then \
ar ru libesmf_time.a ESMF_Alarm.o ESMF_BaseTime.o ESMF_Clock.o ESMF_Time.o Meat.o ESMF_Base.o ESMF_Calendar.o ESMF_Fraction.o ESMF_TimeInterval.o ESMF_Stubs.o ESMF_Mod.o module_symbols_util.o module_utility.o ESMF_AlarmClock.o ; \
else \
ar /out:libesmf_time.a ESMF_Alarm.o ESMF_BaseTime.o ESMF_Clock.o ESMF_Time.o Meat.o ESMF_Base.o ESMF_Calendar.o ESMF_Fraction.o ESMF_TimeInterval.o ESMF_Stubs.o ESMF_Mod.o module_symbols_util.o module_utility.o ESMF_AlarmClock.o ; \
fi
ar: `u' modifier ignored since `D' is the default (see `U')
ar: creating libesmf_time.a
ranlib libesmf_time.a
make[3]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90'
( cd /home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/fftpack/fftpack5 ; \
make -j 2 FC="gfortran" FFLAGS=" -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 " RANLIB="ranlib" AR="ar" ARFLAGS="ru" )
make[3]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/fftpack/fftpack5'
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 c1f2kb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 c1f2kf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 c1f3kb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 c1f3kf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 c1f4kb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 c1f4kf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 c1f5kb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 c1f5kf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 c1fgkb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 c1fgkf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 c1fm1b.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 c1fm1f.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cfft1b.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cfft1f.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cfft1i.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cfft2b.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cfft2f.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cfft2i.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cfftmb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cfftmf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cfftmi.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cmf2kb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cmf2kf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cmf3kb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cmf3kf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cmf4kb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cmf4kf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cmf5kb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cmf5kf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cmfgkb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cmfgkf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cmfm1b.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cmfm1f.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cosq1b.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cosq1f.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cosq1i.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cosqb1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cosqf1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cosqmb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cosqmf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cosqmi.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cost1b.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cost1f.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 cost1i.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 costb1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 costf1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 costmb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 costmf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 costmi.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 factor.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 mcfti1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 mcsqb1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 mcsqf1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 mcstb1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 mcstf1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 mradb2.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 mradb3.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 mradb4.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 mradb5.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 mradbg.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 mradf2.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 mradf3.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 mradf4.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 mradf5.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 mradfg.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 mrftb1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 mrftf1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 mrfti1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 msntb1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 msntf1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 r1f2kb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 r1f2kf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 r1f3kb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 r1f3kf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 r1f4kb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 r1f4kf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 r1f5kb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 r1f5kf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 r1fgkb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 r1fgkf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 rfft1b.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 rfft1f.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 rfft1i.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 rfft2b.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 rfft2f.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 rfft2i.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 rfftb1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 rfftf1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 rffti1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 rfftmb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 rfftmf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 rfftmi.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 sinq1b.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 sinq1f.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 sinq1i.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 sinqmb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 sinqmf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 sinqmi.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 sint1b.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 sint1f.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 sint1i.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 sintb1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 sintf1.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 sintmb.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 sintmf.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 sintmi.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 tables.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 xercon.F
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 xerfft.F
ar ru libfftpack.a c1f2kb.o c1f2kf.o c1f3kb.o c1f3kf.o c1f4kb.o c1f4kf.o c1f5kb.o c1f5kf.o c1fgkb.o c1fgkf.o c1fm1b.o c1fm1f.o cfft1b.o cfft1f.o cfft1i.o cfft2b.o cfft2f.o cfft2i.o cfftmb.o cfftmf.o cfftmi.o cmf2kb.o cmf2kf.o cmf3kb.o cmf3kf.o cmf4kb.o cmf4kf.o cmf5kb.o cmf5kf.o cmfgkb.o cmfgkf.o cmfm1b.o cmfm1f.o cosq1b.o cosq1f.o cosq1i.o cosqb1.o cosqf1.o cosqmb.o cosqmf.o cosqmi.o cost1b.o cost1f.o cost1i.o costb1.o costf1.o costmb.o costmf.o costmi.o factor.o mcfti1.o mcsqb1.o mcsqf1.o mcstb1.o mcstf1.o mradb2.o mradb3.o mradb4.o mradb5.o mradbg.o mradf2.o mradf3.o mradf4.o mradf5.o mradfg.o mrftb1.o mrftf1.o mrfti1.o msntb1.o msntf1.o r1f2kb.o r1f2kf.o r1f3kb.o r1f3kf.o r1f4kb.o r1f4kf.o r1f5kb.o r1f5kf.o r1fgkb.o r1fgkf.o rfft1b.o rfft1f.o rfft1i.o rfft2b.o rfft2f.o rfft2i.o rfftb1.o rfftf1.o rffti1.o rfftmb.o rfftmf.o rfftmi.o sinq1b.o sinq1f.o sinq1i.o sinqmb.o sinqmf.o sinqmi.o sint1b.o sint1f.o sint1i.o sintb1.o sintf1.o sintmb.o sintmf.o sintmi.o tables.o xercon.o xerfft.o
ar: `u' modifier ignored since `D' is the default (see `U')
ar: creating libfftpack.a
ranlib libfftpack.a
make[3]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/fftpack/fftpack5'
( cd /home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf ; \
make -j 2 NETCDFPATH="/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf" RANLIB="ranlib" CPP="/lib/cpp -C -P" \
CC="gcc" CFLAGS="-w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0" \
FC="gfortran -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 " TRADFLAG="-traditional" AR="ar" ARFLAGS="ru" )
make[3]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf'
grep nf_format_64bit /home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include/netcdf.inc ;\
a=$? ; export a ; \
if [ $a -a "$WRFIO_NCD_LARGE_FILE_SUPPORT" = "1" ] ; then \
/lib/cpp -C -P -C -P -traditional -DWRFIO_NCD_LARGE_FILE_SUPPORT -I../ioapi_share wrf_io.F90 | m4 -Uinclude -Uindex -Ulen - > wrf_io.f ; \
else \
/lib/cpp -C -P -C -P -traditional -I../ioapi_share wrf_io.F90 | m4 -Uinclude -Uindex -Ulen - > wrf_io.f ; \
fi
/lib/cpp -C -P -C -P -traditional -I../ioapi_share module_wrfsi_static.F90 > module_wrfsi_static.f
integer nf_format_64bit
parameter (nf_format_64bit = 2)
gfortran -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o module_wrfsi_static.o -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include -I../ioapi_share -c module_wrfsi_static.f
gfortran -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o wrf_io.o -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include -I../ioapi_share -c wrf_io.f
/lib/cpp -C -P -C -P -traditional -I../ioapi_share field_routines.F90 > field_routines.f
gfortran -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -o field_routines.o -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include -I../ioapi_share -c field_routines.f
/bin/rm -f libwrfio_nf.a
if [ "ar" != "lib.exe" ] ; then \
ar cr libwrfio_nf.a wrf_io.o field_routines.o module_wrfsi_static.o ; \
else \
ar /out:libwrfio_nf.a wrf_io.o field_routines.o module_wrfsi_static.o ; \
fi
ranlib libwrfio_nf.a
make[3]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf'
( cd /home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/RSL_LITE ; make -j 2 CC="mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0" \
FC="mpif90 -f90=gfortran -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -fconvert=big-endian -frecord-marker=4" \
CPP="/lib/cpp -C -P -I. -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -traditional" AR="ar" ARFLAGS="ru" ;\
ranlib /home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/RSL_LITE/librsl_lite.a )
make[3]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/RSL_LITE'
mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c c_code.c
mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c buf_for_proc.c
mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c rsl_malloc.c
mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c rsl_bcast.c
mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c task_for_point.c
mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c period.c
mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c swap.c
mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -c cycle.c
/lib/cpp -C -P -I. -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -traditional f_pack.F90 > f_pack.f
mpif90 -f90=gfortran -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -fconvert=big-endian -frecord-marker=4 -o f_pack.o -c f_pack.f
/lib/cpp -C -P -I. -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -traditional f_xpose.F90 > f_xpose.f
mpif90 -f90=gfortran -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -fconvert=big-endian -frecord-marker=4 -o f_xpose.o -c f_xpose.f
/bin/rm -f librsl_lite.a
ar cr librsl_lite.a c_code.o buf_for_proc.o rsl_malloc.o rsl_bcast.o task_for_point.o period.o swap.o cycle.o f_pack.o f_xpose.o
make[3]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/RSL_LITE'
( if [ ! -e /home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/gen_comms.c ] ; then \
/bin/cp /home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/gen_comms_warning /home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/gen_comms.c ; \
cat /home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/RSL_LITE/gen_comms.c >> /home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/gen_comms.c ; fi )
( if [ ! -e module_dm.F ] ; then /bin/cp module_dm_warning module_dm.F ; \
cat /home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/RSL_LITE/module_dm.F >> module_dm.F ; fi )
make[2]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame'
make[1]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF'
make -i -r MODULE_DIRS="-I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include " toolsdir
make[1]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF'
--------------------------------------
( cd tools ; make -i -r CC_TOOLS_CFLAGS="-DNMM_CORE=0" CC_TOOLS="gcc -DIWORDSIZE=4 -DMAX_HISTORY=25" )
make[2]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools'
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g registry.c
registry.c: In function ‘main’:
registry.c:60:3: warning: implicit declaration of function ‘sym_forget’ [-Wimplicit-function-declaration]
sym_forget() ;
^
registry.c:132:3: warning: implicit declaration of function ‘gen_io_boilerplate’ [-Wimplicit-function-declaration]
gen_io_boilerplate() ; /* 20091213 jm. Generate the io_boilerplate_temporary.inc file */
^
registry.c:134:3: warning: implicit declaration of function ‘init_parser’ [-Wimplicit-function-declaration]
init_parser() ;
^
registry.c:157:8: warning: implicit declaration of function ‘pre_parse’ [-Wimplicit-function-declaration]
if ( pre_parse( dir, fp_in, fp_tmp ) ) {
^
registry.c:177:3: warning: implicit declaration of function ‘check_dimspecs’ [-Wimplicit-function-declaration]
check_dimspecs() ;
^
registry.c:187:3: warning: implicit declaration of function ‘gen_actual_args_new’ [-Wimplicit-function-declaration]
gen_actual_args_new( "inc" ) ;
^
registry.c:189:3: warning: implicit declaration of function ‘gen_dummy_args_new’ [-Wimplicit-function-declaration]
gen_dummy_args_new( "inc" ) ;
^
registry.c:191:3: warning: implicit declaration of function ‘gen_dummy_decls_new’ [-Wimplicit-function-declaration]
gen_dummy_decls_new( "inc" ) ;
^
registry.c:193:3: warning: implicit declaration of function ‘gen_namelist_statements’ [-Wimplicit-function-declaration]
gen_namelist_statements("inc") ;
^
registry.c:203:3: warning: implicit declaration of function ‘gen_nest_interp’ [-Wimplicit-function-declaration]
gen_nest_interp( "inc" ) ;
^
registry.c:205:3: warning: implicit declaration of function ‘gen_streams’ [-Wimplicit-function-declaration]
gen_streams("inc") ;
^
registry.c:208:3: warning: implicit declaration of function ‘gen_comms’ [-Wimplicit-function-declaration]
gen_comms( "inc" ) ; /* this is either package supplied (by copying a */
^
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g my_strtok.c
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g reg_parse.c
reg_parse.c: In function ‘pre_parse’:
reg_parse.c:229:15: warning: implicit declaration of function ‘tolower’ [-Wimplicit-function-declaration]
x = tolower(tokens[F_DIMS][i]) ;
^
reg_parse.c:258:10: warning: format not a string literal and no format arguments [-Wformat-security]
sprintf(tracers[ntracers],tokens[F_USE]) ;
^
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g data.c
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g type.c
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g misc.c
misc.c: In function ‘make_entries_uniq’:
misc.c:434:32: warning: implicit declaration of function ‘getpid’ [-Wimplicit-function-declaration]
sprintf(tempfile,"regtmp1%d",getpid()) ;
^
misc.c: In function ‘make_upper_case’:
misc.c:467:35: warning: implicit declaration of function ‘toupper’ [-Wimplicit-function-declaration]
for ( p = str ; *p ; p++ ) *p = toupper(*p) ;
^
misc.c: In function ‘make_lower_case’:
misc.c:477:35: warning: implicit declaration of function ‘tolower’ [-Wimplicit-function-declaration]
for ( p = str ; *p ; p++ ) *p = tolower(*p) ;
^
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g gen_defs.c
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g gen_allocs.c
gen_allocs.c: In function ‘gen_alloc2’:
gen_allocs.c:110:5: warning: implicit declaration of function ‘make_upper_case’ [-Wimplicit-function-declaration]
make_upper_case(dname_tmp) ;
^
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g gen_mod_state_descr.c
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g gen_scalar_indices.c
gen_scalar_indices.c: In function ‘gen_scalar_indices1’:
gen_scalar_indices.c:197:19: warning: implicit declaration of function ‘make_lower_case’ [-Wimplicit-function-declaration]
make_lower_case(fname) ;
^
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g gen_args.c
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g gen_config.c
gen_config.c: In function ‘gen_namelist_script’:
gen_config.c:135:3: warning: implicit declaration of function ‘sym_forget’ [-Wimplicit-function-declaration]
sym_forget() ;
^
gen_config.c:167:25: warning: implicit declaration of function ‘toupper’ [-Wimplicit-function-declaration]
fputc(toupper(*i),fp);
^
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g sym.c
sym.c: In function ‘sym_init’:
sym.c:73:5: warning: implicit declaration of function ‘create_ht’ [-Wimplicit-function-declaration]
create_ht( &symtab ) ;
^
sym.c:77:2: warning: implicit declaration of function ‘exit’ [-Wimplicit-function-declaration]
exit(1) ;
^
sym.c:77:2: warning: incompatible implicit declaration of built-in function ‘exit’
sym.c:77:2: note: include ‘<stdlib.h>’ or provide a declaration of ‘exit’
sym.c: In function ‘sym_forget’:
sym.c:157:7: warning: incompatible implicit declaration of built-in function ‘exit’
exit(1) ;
^
sym.c:157:7: note: include ‘<stdlib.h>’ or provide a declaration of ‘exit’
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g symtab_gen.c
symtab_gen.c: In function ‘symget’:
symtab_gen.c:62:13: warning: implicit declaration of function ‘hash’ [-Wimplicit-function-declaration]
index = hash( name ) ;
^
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g gen_model_data_ord.c
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g gen_interp.c
gen_interp.c: In function ‘gen_nest_interp’:
gen_interp.c:99:18: warning: zero-length gnu_printf format string [-Wformat-zero-length]
sprintf(halo_use,"") ;
^
gen_interp.c: In function ‘gen_nest_interp1’:
gen_interp.c:169:41: warning: zero-length gnu_printf format string [-Wformat-zero-length]
else { sprintf(tag,"") ; sprintf(tag2,"") ; }
^
gen_interp.c:169:62: warning: zero-length gnu_printf format string [-Wformat-zero-length]
else { sprintf(tag,"") ; sprintf(tag2,"") ; }
^
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g gen_comms.c
gen_comms.c: In function ‘gen_halos’:
gen_comms.c:251:9: warning: implicit declaration of function ‘make_upper_case’ [-Wimplicit-function-declaration]
make_upper_case(commname) ;
^
gen_comms.c: At top level:
gen_comms.c:582:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
gen_packs_halo ( FILE *fp , node_t *p, char *shw, int xy /* 0=y,1=x */ , int pu /* 0=pack,1=unpack */, char * packname, char * commname )
^
gen_comms.c:775:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
gen_packs ( FILE *fp , node_t *p, int shw, int xy /* 0=y,1=x */ , int pu /* 0=pack,1=unpack */, char * packname, char * commname )
^
gen_comms.c: In function ‘gen_shift’:
gen_comms.c:1681:25: warning: zero-length gnu_printf format string [-Wformat-zero-length]
sprintf( Shift.use, "" ) ;
^
gen_comms.c: In function ‘gen_nest_packunpack’:
gen_comms.c:2192:56: warning: zero-length gnu_printf format string [-Wformat-zero-length]
else sprintf(tag,"") ;
^
gen_comms.c:2199:41: warning: zero-length gnu_printf format string [-Wformat-zero-length]
else sprintf(tag,"") ;
^
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g gen_scalar_derefs.c
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g set_dim_strs.c
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g gen_wrf_io.c
gen_wrf_io.c: In function ‘gen_wrf_io’:
gen_wrf_io.c:27:3: warning: implicit declaration of function ‘sym_forget’ [-Wimplicit-function-declaration]
sym_forget() ;
^
gen_wrf_io.c:36:3: note: in expansion of macro ‘OP_F’
OP_F(fp,"wrf_bdyout.inc") ;
^
gen_wrf_io.c: In function ‘gen_wrf_io2’:
gen_wrf_io.c:321:11: warning: implicit declaration of function ‘make_upper_case’ [-Wimplicit-function-declaration]
make_upper_case(dname) ;
^
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g gen_streams.c
gen_streams.c: In function ‘gen_streams’:
gen_streams.c:25:3: warning: implicit declaration of function ‘gen_io_domain_defs’ [-Wimplicit-function-declaration]
gen_io_domain_defs( fp ) ;
^
gen_streams.c:33:3: warning: implicit declaration of function ‘gen_set_timekeeping_defs’ [-Wimplicit-function-declaration]
gen_set_timekeeping_defs( fp ) ;
^
gen_streams.c:41:3: warning: implicit declaration of function ‘gen_set_timekeeping_alarms’ [-Wimplicit-function-declaration]
gen_set_timekeeping_alarms( fp ) ;
^
gen_streams.c:49:3: warning: implicit declaration of function ‘gen_io_form_for_dataset’ [-Wimplicit-function-declaration]
gen_io_form_for_dataset( fp ) ;
^
gen_streams.c:57:3: warning: implicit declaration of function ‘gen_io_form_for_stream’ [-Wimplicit-function-declaration]
gen_io_form_for_stream( fp ) ;
^
gen_streams.c:65:3: warning: implicit declaration of function ‘gen_switches_and_alarms’ [-Wimplicit-function-declaration]
gen_switches_and_alarms( fp ) ;
^
gen_streams.c:73:3: warning: implicit declaration of function ‘gen_check_auxstream_alarms’ [-Wimplicit-function-declaration]
gen_check_auxstream_alarms( fp ) ;
^
gen_streams.c:81:3: warning: implicit declaration of function ‘gen_fine_stream_input’ [-Wimplicit-function-declaration]
gen_fine_stream_input( fp ) ;
^
gen_streams.c:89:3: warning: implicit declaration of function ‘gen_med_auxinput_in’ [-Wimplicit-function-declaration]
gen_med_auxinput_in( fp ) ;
^
gen_streams.c:97:3: warning: implicit declaration of function ‘gen_med_hist_out_opens’ [-Wimplicit-function-declaration]
gen_med_hist_out_opens( fp ) ;
^
gen_streams.c:105:3: warning: implicit declaration of function ‘gen_med_hist_out_closes’ [-Wimplicit-function-declaration]
gen_med_hist_out_closes( fp ) ;
^
gen_streams.c:113:3: warning: implicit declaration of function ‘gen_med_auxinput_in_closes’ [-Wimplicit-function-declaration]
gen_med_auxinput_in_closes( fp ) ;
^
gen_streams.c:121:3: warning: implicit declaration of function ‘gen_med_last_solve_io’ [-Wimplicit-function-declaration]
gen_med_last_solve_io( fp ) ;
^
gen_streams.c:129:3: warning: implicit declaration of function ‘gen_med_open_esmf_calls’ [-Wimplicit-function-declaration]
gen_med_open_esmf_calls( fp ) ;
^
gen_streams.c:137:3: warning: implicit declaration of function ‘gen_med_find_esmf_coupling’ [-Wimplicit-function-declaration]
gen_med_find_esmf_coupling( fp ) ;
^
gen_streams.c:145:3: warning: implicit declaration of function ‘gen_shutdown_closes’ [-Wimplicit-function-declaration]
gen_shutdown_closes( fp ) ;
^
gen_streams.c: At top level:
gen_streams.c:528:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
gen_med_open_esmf_calls ( FILE *fp )
^
gen_streams.c:558:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
gen_med_find_esmf_coupling ( FILE *fp )
^
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -DNMM_CORE=0 -c -g standard.c
standard.c: In function ‘main’:
standard.c:45:9: warning: implicit declaration of function ‘strncpy’ [-Wimplicit-function-declaration]
strncpy(q,p,4) ; q+=4 ;
^
standard.c:45:9: warning: incompatible implicit declaration of built-in function ‘strncpy’
standard.c:45:9: note: include ‘<string.h>’ or provide a declaration of ‘strncpy’
standard.c:56:15: warning: implicit declaration of function ‘strncmp’ [-Wimplicit-function-declaration]
if ( !strncmp( wrf_error_fatal_str, "wrf_error_fatal", 15 ) && wrf_error_fatal_str[15] != '3' )
^
standard.c:80:11: warning: implicit declaration of function ‘strcpy’ [-Wimplicit-function-declaration]
strcpy(lineo,p+3+ns) ;
^
standard.c:80:11: warning: incompatible implicit declaration of built-in function ‘strcpy’
standard.c:80:11: note: include ‘<string.h>’ or provide a declaration of ‘strcpy’
standard.c:90:13: warning: implicit declaration of function ‘strcat’ [-Wimplicit-function-declaration]
strcat(lineo,linei) ;
^
standard.c:90:13: warning: incompatible implicit declaration of built-in function ‘strcat’
standard.c:90:13: note: include ‘<string.h>’ or provide a declaration of ‘strcat’
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -o standard.exe -g standard.o
gcc -DIWORDSIZE=4 -DMAX_HISTORY=25 -o registry -g registry.o my_strtok.o reg_parse.o data.o type.o misc.o gen_defs.o gen_allocs.o gen_mod_state_descr.o gen_scalar_indices.o gen_args.o gen_config.o sym.o symtab_gen.o gen_model_data_ord.o gen_interp.o gen_comms.o gen_scalar_derefs.o set_dim_strs.o gen_wrf_io.o gen_streams.o
make[2]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools'
make[1]: Leaving directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF'
/bin/rm -f main/libwrflib.a main/libwrflib.lib
make -i -r MODULE_DIRS="-I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include " framework
make[1]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF'
--------------------------------------
( cd frame ; make -i -r -j 2 framework; \
cd ../external/io_netcdf ; \
make -i -r NETCDFPATH="/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf" FC="gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 " RANLIB="ranlib" \
CPP="/lib/cpp -C -P" LDFLAGS=" -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 " TRADFLAG="-traditional" ESMF_IO_LIB_EXT="-L/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -lesmf_time" \
LIB_LOCAL="-L/home/mahdad1/WRF_ParFlow/BUILD_PF/parflow/lib -lparflow -lkinsol -lamps -lamps_common -lamps -lamps_common -L/home/mahdad1/WRF_ParFlow/BUILD_PF/hypre/lib -lHYPRE -L/home/mahdad1/WRF_ParFlow/BUILD_PF/silo/lib -lsilo" \
ESMF_MOD_DEPENDENCE="/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90/module_utility.o" AR="INTERNAL_BUILD_ERROR_SHOULD_NOT_NEED_AR" diffwrf; \
cd ../io_int ; \
make -i -r SFC="gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 " FC="gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 " RANLIB="ranlib" CPP="/lib/cpp -C -P -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM" DM_FC="mpif90 -f90=gfortran -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 "\
TRADFLAG="-traditional" ESMF_IO_LIB_EXT="-L/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -lesmf_time" \
ESMF_MOD_DEPENDENCE="/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90/module_utility.o" AR="INTERNAL_BUILD_ERROR_SHOULD_NOT_NEED_AR" diffwrf ; \
cd ../../frame )
make[2]: Entering directory '/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame'
( cd .. ; tools/registry -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -DNEW_BDYS Registry/Registry ) ;
rm -f wrf_shutdown.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional wrf_shutdown.F > wrf_shutdown.bb
opening Registry/registry.dimspec
including Registry/registry.dimspec
opening Registry/Registry.EM_COMMON
including Registry/Registry.EM_COMMON
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe wrf_shutdown.bb | /lib/cpp -C -P > wrf_shutdown.f90
rm -f wrf_shutdown.b wrf_shutdown.bb
mpif90 -f90=gfortran -o wrf_shutdown.o -c -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include wrf_shutdown.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f clog.o
mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -o clog.o -c -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 clog.c
opening Registry/registry.io_boilerplate
including Registry/registry.io_boilerplate
opening Registry/io_boilerplate_temporary.inc
including Registry/io_boilerplate_temporary.inc
opening Registry/registry.fire
including Registry/registry.fire
opening Registry/registry.avgflx
including Registry/registry.avgflx
opening Registry/registry.stoch
including Registry/registry.stoch
opening Registry/registry.les
including Registry/registry.les
opening Registry/registry.cam
including Registry/registry.cam
opening Registry/registry.clm
including Registry/registry.clm
opening Registry/registry.ssib
including Registry/registry.ssib
rm -f hires_timer.o
mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -o hires_timer.o -c -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 hires_timer.c
opening Registry/registry.diags
including Registry/registry.diags
opening Registry/registry.bdy_perturb
including Registry/registry.bdy_perturb
opening Registry/registry.parflow
including Registry/registry.parflow
rm -f module_sm.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_sm.F > module_sm.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_sm.bb | /lib/cpp -C -P > module_sm.f90
rm -f module_sm.b module_sm.bb
mpif90 -f90=gfortran -o module_sm.o -c -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_sm.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
if [ "m4 -G" = NA ] ; then \
/bin/cp ../arch/md_calls.inc . ; \
else \
m4 -G md_calls.m4 > md_calls.inc ; \
fi
/lib/cpp -C -P -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional -I../inc module_internal_header_util.F > module_internal_header_util.f90
gfortran -c -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 module_internal_header_util.f90
mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -c -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 wrf_num_bytes_between.c
rm -f libmassv.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional libmassv.F > libmassv.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe libmassv.bb | /lib/cpp -C -P > libmassv.f90
rm -f libmassv.b libmassv.bb
mpif90 -f90=gfortran -o libmassv.o -c -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include libmassv.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f collect_on_comm.o
mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -o collect_on_comm.o -c -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 collect_on_comm.c
Registry INFO variable counts: 0d 2031 1d 103 2d 838 3d 671
mpicc -cc=gcc -DMPI2_SUPPORT -DFSEEKO64_OK -c -w -O3 -c -DLANDREAD_STUB -DDM_PARALLEL -DMAX_HISTORY=25 -DNMM_CORE=0 -DIWORDSIZE=4 pack_utils.c
REGISTRY WARNING: o3rad: o3rad_b is not a variable or number; ignoring it
REGISTRY WARNING: o3rad: o3rad_bt is not a variable or number; ignoring it
REGISTRY WARNING: aerod(grid%sm31,grid%sm32,grid%sm33,itrace): aerod_b is not a variable or number; ignoring it
REGISTRY WARNING: aerod(grid%sm31,grid%sm32,grid%sm33,itrace): aerod_bt is not a variable or number; ignoring it
REGISTRY WARNING: om_tmp: om_tmp_b is not a variable or number; ignoring it
REGISTRY WARNING: om_tmp: om_tmp_bt is not a variable or number; ignoring it
REGISTRY WARNING: om_s: om_s_b is not a variable or number; ignoring it
REGISTRY WARNING: om_s: om_s_bt is not a variable or number; ignoring it
REGISTRY WARNING: om_u: om_u_b is not a variable or number; ignoring it
REGISTRY WARNING: om_u: om_u_bt is not a variable or number; ignoring it
REGISTRY WARNING: om_v: om_v_b is not a variable or number; ignoring it
REGISTRY WARNING: om_v: om_v_bt is not a variable or number; ignoring it
REGISTRY WARNING: om_ml: om_ml_b is not a variable or number; ignoring it
REGISTRY WARNING: om_ml: om_ml_bt is not a variable or number; ignoring it
REGISTRY WARNING: ru_tendf_stoch: ru_tendf_stoch_b is not a variable or number; ignoring it
REGISTRY WARNING: ru_tendf_stoch: ru_tendf_stoch_bt is not a variable or number; ignoring it
REGISTRY WARNING: rv_tendf_stoch: rv_tendf_stoch_b is not a variable or number; ignoring it
REGISTRY WARNING: rv_tendf_stoch: rv_tendf_stoch_bt is not a variable or number; ignoring it
REGISTRY WARNING: rt_tendf_stoch: rt_tendf_stoch_b is not a variable or number; ignoring it
REGISTRY WARNING: rt_tendf_stoch: rt_tendf_stoch_bt is not a variable or number; ignoring it
REGISTRY WARNING: field_u_tend_perturb: field_u_tend_perturb_b is not a variable or number; ignoring it
REGISTRY WARNING: field_u_tend_perturb: field_u_tend_perturb_bt is not a variable or number; ignoring it
REGISTRY WARNING: field_v_tend_perturb: field_v_tend_perturb_b is not a variable or number; ignoring it
REGISTRY WARNING: field_v_tend_perturb: field_v_tend_perturb_bt is not a variable or number; ignoring it
REGISTRY WARNING: field_t_tend_perturb: field_t_tend_perturb_b is not a variable or number; ignoring it
REGISTRY WARNING: field_t_tend_perturb: field_t_tend_perturb_bt is not a variable or number; ignoring it
ADVISORY: RSL_LITE version of gen_comms is linked in with registry program.
rm -f module_wrf_error.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_wrf_error.F > module_wrf_error.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_wrf_error.bb | /lib/cpp -C -P > module_wrf_error.f90
rm -f module_wrf_error.b module_wrf_error.bb
mpif90 -f90=gfortran -o module_wrf_error.o -c -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_wrf_error.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f wrf_debug.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional wrf_debug.F > wrf_debug.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe wrf_debug.bb | /lib/cpp -C -P > wrf_debug.f90
rm -f wrf_debug.b wrf_debug.bb
mpif90 -f90=gfortran -o wrf_debug.o -c -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include wrf_debug.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f module_state_description.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_state_description.F > module_state_description.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_state_description.bb | /lib/cpp -C -P > module_state_description.f90
rm -f module_state_description.b module_state_description.bb
mpif90 -f90=gfortran -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_state_description.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f module_driver_constants.o
rm -f module_streams.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_driver_constants.F > module_driver_constants.bb
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_streams.F > module_streams.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_driver_constants.bb | /lib/cpp -C -P > module_driver_constants.f90
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_streams.bb | /lib/cpp -C -P > module_streams.f90
rm -f module_driver_constants.b module_driver_constants.bb
rm -f module_streams.b module_streams.bb
mpif90 -f90=gfortran -o module_driver_constants.o -c -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_driver_constants.f90
mpif90 -f90=gfortran -o module_streams.o -c -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_streams.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f module_timing.o
rm -f module_domain_type.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_timing.F > module_timing.bb
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_domain_type.F > module_domain_type.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_timing.bb | /lib/cpp -C -P > module_timing.f90
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_domain_type.bb | /lib/cpp -C -P > module_domain_type.f90
rm -f module_timing.b module_timing.bb
mpif90 -f90=gfortran -o module_timing.o -c -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_timing.f90
rm -f module_domain_type.b module_domain_type.bb
mpif90 -f90=gfortran -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_domain_type.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f module_machine.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_machine.F > module_machine.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_machine.bb | /lib/cpp -C -P > module_machine.f90
rm -f module_machine.b module_machine.bb
mpif90 -f90=gfortran -o module_machine.o -c -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_machine.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f module_quilt_outbuf_ops.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_quilt_outbuf_ops.F > module_quilt_outbuf_ops.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_quilt_outbuf_ops.bb | /lib/cpp -C -P > module_quilt_outbuf_ops.f90
rm -f module_quilt_outbuf_ops.b module_quilt_outbuf_ops.bb
rm -f module_configure.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_configure.F > module_configure.bb
mpif90 -f90=gfortran -o module_quilt_outbuf_ops.o -c -O2 -ftree-vectorize -funroll-loops -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_quilt_outbuf_ops.f90
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_configure.bb | /lib/cpp -C -P > module_configure.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f module_configure.b module_configure.bb
mpif90 -f90=gfortran -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_configure.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f module_alloc_space_0.o
rm -f module_alloc_space_1.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_alloc_space_0.F > module_alloc_space_0.bb
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_alloc_space_1.F > module_alloc_space_1.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_alloc_space_1.bb | /lib/cpp -C -P > module_alloc_space_1.f90
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_alloc_space_0.bb | /lib/cpp -C -P > module_alloc_space_0.f90
rm -f module_alloc_space_1.b module_alloc_space_1.bb
mpif90 -f90=gfortran -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_alloc_space_1.f90
rm -f module_alloc_space_0.b module_alloc_space_0.bb
mpif90 -f90=gfortran -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_alloc_space_0.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f module_alloc_space_2.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_alloc_space_2.F > module_alloc_space_2.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_alloc_space_2.bb | /lib/cpp -C -P > module_alloc_space_2.f90
rm -f module_alloc_space_2.b module_alloc_space_2.bb
mpif90 -f90=gfortran -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_alloc_space_2.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f module_alloc_space_3.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_alloc_space_3.F > module_alloc_space_3.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_alloc_space_3.bb | /lib/cpp -C -P > module_alloc_space_3.f90
rm -f module_alloc_space_3.b module_alloc_space_3.bb
mpif90 -f90=gfortran -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_alloc_space_3.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f module_alloc_space_4.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_alloc_space_4.F > module_alloc_space_4.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_alloc_space_4.bb | /lib/cpp -C -P > module_alloc_space_4.f90
rm -f module_alloc_space_4.b module_alloc_space_4.bb
mpif90 -f90=gfortran -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_alloc_space_4.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f module_alloc_space_5.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_alloc_space_5.F > module_alloc_space_5.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_alloc_space_5.bb | /lib/cpp -C -P > module_alloc_space_5.f90
rm -f module_alloc_space_5.b module_alloc_space_5.bb
mpif90 -f90=gfortran -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_alloc_space_5.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f module_alloc_space_6.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_alloc_space_6.F > module_alloc_space_6.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_alloc_space_6.bb | /lib/cpp -C -P > module_alloc_space_6.f90
rm -f module_alloc_space_6.b module_alloc_space_6.bb
mpif90 -f90=gfortran -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_alloc_space_6.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f module_alloc_space_7.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_alloc_space_7.F > module_alloc_space_7.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_alloc_space_7.bb | /lib/cpp -C -P > module_alloc_space_7.f90
rm -f module_alloc_space_7.b module_alloc_space_7.bb
mpif90 -f90=gfortran -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_alloc_space_7.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f module_alloc_space_8.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_alloc_space_8.F > module_alloc_space_8.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_alloc_space_8.bb | /lib/cpp -C -P > module_alloc_space_8.f90
rm -f module_alloc_space_8.b module_alloc_space_8.bb
mpif90 -f90=gfortran -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_alloc_space_8.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f module_alloc_space_9.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_alloc_space_9.F > module_alloc_space_9.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_alloc_space_9.bb | /lib/cpp -C -P > module_alloc_space_9.f90
rm -f module_alloc_space_9.b module_alloc_space_9.bb
mpif90 -f90=gfortran -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_alloc_space_9.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
/lib/cpp -C -P -DNNN=0 -I../inc -DNL_get_ROUTINES nl_access_routines.F > yy0.f90
mpif90 -f90=gfortran -o nl_get_0_routines.o -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include yy0.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f yy0.f90
/lib/cpp -C -P -DNNN=1 -I../inc -DNL_get_ROUTINES nl_access_routines.F > yy1.f90
mpif90 -f90=gfortran -o nl_get_1_routines.o -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include yy1.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
/lib/cpp -C -P -DNNN=2 -I../inc -DNL_get_ROUTINES nl_access_routines.F > yy2.f90
mpif90 -f90=gfortran -o nl_get_2_routines.o -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include yy2.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f yy1.f90
/lib/cpp -C -P -DNNN=3 -I../inc -DNL_get_ROUTINES nl_access_routines.F > yy3.f90
mpif90 -f90=gfortran -o nl_get_3_routines.o -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include yy3.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f yy2.f90
/lib/cpp -C -P -DNNN=4 -I../inc -DNL_get_ROUTINES nl_access_routines.F > yy4.f90
mpif90 -f90=gfortran -o nl_get_4_routines.o -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include yy4.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f yy3.f90
/lib/cpp -C -P -DNNN=5 -I../inc -DNL_get_ROUTINES nl_access_routines.F > yy5.f90
mpif90 -f90=gfortran -o nl_get_5_routines.o -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include yy5.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f yy4.f90
/lib/cpp -C -P -DNNN=6 -I../inc -DNL_get_ROUTINES nl_access_routines.F > yy6.f90
mpif90 -f90=gfortran -o nl_get_6_routines.o -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include yy6.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f yy5.f90
/lib/cpp -C -P -DNNN=7 -I../inc -DNL_get_ROUTINES nl_access_routines.F > yy7.f90
mpif90 -f90=gfortran -o nl_get_7_routines.o -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include yy7.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f yy6.f90
/lib/cpp -C -P -DNNN=0 -I../inc -DNL_set_ROUTINES nl_access_routines.F > xx0.f90
mpif90 -f90=gfortran -o nl_set_0_routines.o -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include xx0.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f yy7.f90
/lib/cpp -C -P -DNNN=1 -I../inc -DNL_set_ROUTINES nl_access_routines.F > xx1.f90
mpif90 -f90=gfortran -o nl_set_1_routines.o -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include xx1.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f xx0.f90
/lib/cpp -C -P -DNNN=2 -I../inc -DNL_set_ROUTINES nl_access_routines.F > xx2.f90
mpif90 -f90=gfortran -o nl_set_2_routines.o -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include xx2.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f xx1.f90
/lib/cpp -C -P -DNNN=3 -I../inc -DNL_set_ROUTINES nl_access_routines.F > xx3.f90
mpif90 -f90=gfortran -o nl_set_3_routines.o -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include xx3.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f xx2.f90
/lib/cpp -C -P -DNNN=4 -I../inc -DNL_set_ROUTINES nl_access_routines.F > xx4.f90
mpif90 -f90=gfortran -o nl_set_4_routines.o -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include xx4.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f xx3.f90
/lib/cpp -C -P -DNNN=5 -I../inc -DNL_set_ROUTINES nl_access_routines.F > xx5.f90
mpif90 -f90=gfortran -o nl_set_5_routines.o -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include xx5.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f xx4.f90
/lib/cpp -C -P -DNNN=6 -I../inc -DNL_set_ROUTINES nl_access_routines.F > xx6.f90
mpif90 -f90=gfortran -o nl_set_6_routines.o -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include xx6.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f xx5.f90
/lib/cpp -C -P -DNNN=7 -I../inc -DNL_set_ROUTINES nl_access_routines.F > xx7.f90
mpif90 -f90=gfortran -o nl_set_7_routines.o -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include xx7.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f xx6.f90
rm -f module_domain.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_domain.F > module_domain.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_domain.bb | /lib/cpp -C -P > module_domain.f90
rm -f module_domain.b module_domain.bb
mpif90 -f90=gfortran -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_domain.f90
f951: Warning: Nonexistent include directory ‘/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem’ [-Wmissing-include-dirs]
rm -f xx7.f90
rm -f module_nesting.o
rm -f module_tiles.o
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_nesting.F > module_nesting.bb
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_tiles.F > module_tiles.b
/lib/cpp -C -P -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -DEM_CORE=1 -DNMM_CORE=0 -DNMM_MAX_DIM=2600 -DCOAMPS_CORE=0 -DDA_CORE=0 -DEXP_CORE=0 -DWRF_PFWRF=1 -DIWORDSIZE=4 -DDWORDSIZE=8 -DRWORDSIZE=4 -DLWORDSIZE=4 -DNONSTANDARD_SYSTEM_SUBR -DWRF_USE_CLM -DDM_PARALLEL -DNETCDF -DUSE_ALLOCATABLES -DGRIB1 -DINTIO -DLIMIT_ARGS -DCONFIG_BUF_LEN=65536 -DMAX_DOMAINS_F=21 -DMAX_HISTORY=25 -DNMM_NEST=0 -I. -traditional module_tiles.b > module_tiles.f90
/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/tools/standard.exe module_nesting.bb | /lib/cpp -C -P > module_nesting.f90
rm -f module_tiles.b
rm -f module_nesting.b module_nesting.bb
if fgrep -iq '!$OMP' module_tiles.f90 ; then \
if [ -n "" ] ; then echo COMPILING module_tiles.F WITH OMP ; fi ; \
mpif90 -f90=gfortran -c -O0 -w -ffree-form -ffree-line-length-none -cpp -fconvert=big-endian -frecord-marker=4 -I../dyn_em -I../dyn_nmm -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/esmf_time_f90 -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/main -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_netcdf -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/external/io_int -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/frame -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/share -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/phys -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/chem -I/home/mahdad1/WRF/Build_WRF/WRF_PUCM_PF/inc -I/home/mahdad1/WRF/Build_WRF/LIBRARIES/netcdf/include module_tiles.f90 ; \