<p><b>duda</b> 2013-03-29 11:53:40 -0600 (Fri, 29 Mar 2013)</p><p>BRANCH COMMIT<br>
<br>
In the 'ifort' build target, switch to the Intel C compiler, and<br>
enable AVX instructions. <br>
<br>
NB: On older architectures that don't support AVX instructions, the<br>
-mavx flag will likely need to be removed.<br>
<br>
<br>
M    Makefile<br>
</p><hr noshade><pre><font color="gray">Modified: branches/atmos_physics/Makefile
===================================================================
--- branches/atmos_physics/Makefile        2013-03-29 17:24:47 UTC (rev 2682)
+++ branches/atmos_physics/Makefile        2013-03-29 17:53:40 UTC (rev 2683)
@@ -100,11 +100,11 @@
 ifort:
         ( $(MAKE) all \
         &quot;FC_PARALLEL = mpif90&quot; \
-        &quot;CC_PARALLEL = gcc&quot; \
+        &quot;CC_PARALLEL = mpicc&quot; \
         &quot;FC_SERIAL = ifort&quot; \
-        &quot;CC_SERIAL = gcc&quot; \
-        &quot;FFLAGS_OPT = -real-size 64 -O3 -convert big_endian -FR&quot; \
-        &quot;CFLAGS_OPT = -O3 -m64&quot; \
+        &quot;CC_SERIAL = icc&quot; \
+        &quot;FFLAGS_OPT = -real-size 64 -O3 -mavx -convert big_endian -FR&quot; \
+        &quot;CFLAGS_OPT = -O3 -mavx -m64&quot; \
         &quot;LDFLAGS_OPT = -O3&quot; \
         &quot;FFLAGS_DEBUG = -real-size 64 -g -convert big_endian -FR -CU -CB -check all&quot; \
         &quot;CFLAGS_DEBUG = -g -m64&quot; \

</font>
</pre>