New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
WorkingGroups/TAM/InstallationsMacInstosh/InstallMacIntelFortran (diff) – NEMO

Changes between Version 5 and Version 6 of WorkingGroups/TAM/InstallationsMacInstosh/InstallMacIntelFortran


Ignore:
Timestamp:
2009-09-17T10:20:50+02:00 (15 years ago)
Author:
chauvin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WorkingGroups/TAM/InstallationsMacInstosh/InstallMacIntelFortran

    v5 v6  
    2222 - Useful : the ROMS Mac [https://www.myroms.org/wiki/index.php/ROMS_Mac installation page] 
    2323 
     24== Generating NETCDF modules and library == 
     25The following script is executed in the directory netcdf-3.6.1/src 
     26The compilers come from the intel web site, and installed on a Mac OS X 10.5.8 (Leopard). 
     27Flags avoid conflicts between C and Fortran during the library compilation. 
     28 
     29 
     30{{{ 
     31#!/bin/sh 
     32 
     33export FC=ifort 
     34export F90=ifort 
     35export F77=ifort 
     36 
     37export CFLAGS='-O3' 
     38export CC=icc 
     39export CXX=icpc 
     40export CPPFLAGS=' -DNDEBUG -DpgiFortran' 
     41 
     42./configure --prefix=/usr/local/netcdf-3.6.1/intel 
     43}}} 
     44 
     45 
     46