<p><b>duda</b> 2010-04-21 17:30:52 -0600 (Wed, 21 Apr 2010)</p><p>To prevent errors related to the kind type of literal real function arguments, <br>
add -r8 and -fdefault-real-8 flags for g95 and gfortran options, respectively.<br>
<br>
M    Makefile<br>
</p><hr noshade><pre><font color="gray">Modified: trunk/mpas/Makefile
===================================================================
--- trunk/mpas/Makefile        2010-04-21 23:07:09 UTC (rev 199)
+++ trunk/mpas/Makefile        2010-04-21 23:30:52 UTC (rev 200)
@@ -75,7 +75,7 @@
         &quot;CC = mpicc&quot; \
         &quot;SFC = gfortran&quot; \
         &quot;SCC = gcc&quot; \
-        &quot;FFLAGS = -O3 -m64 -ffree-line-length-none&quot; \
+        &quot;FFLAGS = -O3 -m64 -ffree-line-length-none -fdefault-real-8&quot; \
         &quot;CFLAGS = -O3 -m64&quot; \
         &quot;LDFLAGS = -O3 -m64&quot; \
         &quot;CORE = $(CORE)&quot; \
@@ -87,7 +87,7 @@
         &quot;CC = mpicc&quot; \
         &quot;SFC = g95&quot; \
         &quot;SCC = gcc&quot; \
-        &quot;FFLAGS = -O3 -ffree-line-length-huge&quot; \
+        &quot;FFLAGS = -O3 -ffree-line-length-huge -r8&quot; \
         &quot;CFLAGS = -O3&quot; \
         &quot;LDFLAGS = -O3&quot; \
         &quot;CORE = $(CORE)&quot; \
@@ -99,7 +99,7 @@
         &quot;CC = gcc&quot; \
         &quot;SFC = g95&quot; \
         &quot;SCC = gcc&quot; \
-        &quot;FFLAGS = -O3 -ffree-line-length-huge&quot; \
+        &quot;FFLAGS = -O3 -ffree-line-length-huge -r8&quot; \
         &quot;CFLAGS = -O3&quot; \
         &quot;LDFLAGS = -O3&quot; \
         &quot;CORE = $(CORE)&quot; \

</font>
</pre>