<p><b>duda</b> 2011-09-19 12:46:12 -0600 (Mon, 19 Sep 2011)</p><p>BRANCH COMMIT<br>
<br>
Add free-form flag and m32 flag to fix compilation problems <br>
on MMM's Apple/Darwin machines with g95. The gcc compiler on<br>
these machines defaults to 64-bit, while the g95 compiler<br>
can only produce 32-bit objects.<br>
<br>
M    Makefile<br>
</p><hr noshade><pre><font color="gray">Modified: branches/atmos_physics/Makefile
===================================================================
--- branches/atmos_physics/Makefile        2011-09-19 17:14:29 UTC (rev 1008)
+++ branches/atmos_physics/Makefile        2011-09-19 18:46:12 UTC (rev 1009)
@@ -131,10 +131,10 @@
 g95:
         ( make all \
         &quot;FC = mpif90&quot; \
-        &quot;CC = mpicc&quot; \
+        &quot;CC = mpicc -m32&quot; \
         &quot;SFC = g95&quot; \
-        &quot;SCC = gcc&quot; \
-        &quot;FFLAGS = -O3 -ffree-line-length-huge -r8 -fendian=big&quot; \
+        &quot;SCC = gcc -m32&quot; \
+        &quot;FFLAGS = -O3 -ffree-line-length-huge -r8 -fendian=big -ffree-form&quot; \
         &quot;CFLAGS = -O3&quot; \
         &quot;LDFLAGS = -O3&quot; \
         &quot;CORE = $(CORE)&quot; \
@@ -143,10 +143,10 @@
 g95-serial:
         ( make all \
         &quot;FC = g95&quot; \
-        &quot;CC = gcc&quot; \
+        &quot;CC = gcc -m32&quot; \
         &quot;SFC = g95&quot; \
-        &quot;SCC = gcc&quot; \
-        &quot;FFLAGS = -O3 -ffree-line-length-huge -r8 -fendian=big&quot; \
+        &quot;SCC = gcc -m32&quot; \
+        &quot;FFLAGS = -O3 -ffree-line-length-huge -r8 -fendian=big -ffree-form&quot; \
         &quot;CFLAGS = -O3&quot; \
         &quot;LDFLAGS = -O3&quot; \
         &quot;CORE = $(CORE)&quot; \

</font>
</pre>