Last change
on this file since 4848 was
4728,
checked in by idelkadi, 13 months ago
|
Update of ecrad in the LMDZ_ECRad branch of LMDZ:
- version 1.6.1 of ecrad
- files are no longer grouped in the same ecrad directory.
- the structure of ecrad offline is preserved to facilitate updating in LMDZ
- cfg.bld modified to take into account the new added subdirectories.
- the interface routines and those added in ecrad are moved to the phylmd directory
|
File size:
911 bytes
|
Line | |
---|
1 | # This is a Makefile for the Intel compiler: run "make |
---|
2 | # PROFILE=intel". Note that by default the Intel compiler puts arrays |
---|
3 | # on the stack, which is likely to cause a stack overflow - hence the |
---|
4 | # use of "-heap-arrays" which puts them on the heap like most other |
---|
5 | # compilers. If you remove this argument you will likely need to set |
---|
6 | # the environment variable OMP_STACKSIZE to 64MB. |
---|
7 | |
---|
8 | FC = ifort |
---|
9 | CC = icc |
---|
10 | CPPFLAGS = |
---|
11 | |
---|
12 | ifndef DEBUG |
---|
13 | OPTFLAGS = -O3 |
---|
14 | else |
---|
15 | OPTFLAGS = -O0 -check bounds -init=snan |
---|
16 | endif |
---|
17 | |
---|
18 | LDFLAGS = -lrt |
---|
19 | WARNFLAGS = -warn all |
---|
20 | |
---|
21 | # We used to have the flag "-convert big_endian" here because the RRTM |
---|
22 | # input files are big endian Fortran unformatted files, but now the |
---|
23 | # file ordering has been specified at the OPEN command so no compiler |
---|
24 | # flags are needed. |
---|
25 | BASICFLAGS = -module ../mod -fpe0 -fp-model precise -ftz -fp-speculation safe -heap-arrays |
---|
26 | |
---|
27 | DEBUGFLAGS = -g |
---|
28 | OMPFLAG = -qopenmp -qopenmp-lib=compat |
---|
Note: See
TracBrowser
for help on using the repository browser.