/[lmdze]/trunk/Compiler_options/ifort_debug.mk
ViewVC logotype

Diff of /trunk/Compiler_options/ifort_debug.mk

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/Compilers/ifort.mk revision 3 by guez, Wed Feb 27 13:16:39 2008 UTC trunk/Compiler_options/ifort_debug.mk revision 169 by guez, Mon Sep 14 17:13:16 2015 UTC
# Line 1  Line 1 
1  # These are machine dependent macros, meant to be included in the  # These are machine dependent macros, meant to be included in the
2  # LMDZE makefile  # LMDZE makefile
3    
4  # For ifort 9.0 (1 Jan 2005)  # For ifort 12
5    
6  COMPILE.f = $(FC) $(F90FLAGS) -c  netcdf_dir = /smplocal/pub/NetCDF/4.1.3/seq
7    ##netcdf_dir = /opt/netcdf42/ifort
8    
9  FC = ifort  netcdf_inc_dir = ${netcdf_dir}/include
10    netcdf_lib_dir = ${netcdf_dir}/lib
11    
12  FFLAGS = -I${libf_dir} -I${libf_dir}/dyn3d -I${libf_dir}/phylmd -I/home/guez/NetCDF/netcdf-3.6.1_ifort/include -I/home/guez/lib/IOIPSL/IOIPSL_t -I/home/guez/lib/Numerical_Recipes_Lionel/ifort -assume minus0 -check all -debug extended -debug-parameters all -error_limit 1 -fltconsistency -fpe0 -fpstkchk -ftrapuv -g -inline-debug-info -O0 -traceback  numer_rec_95_dir = ${workdir}/lib/Numer_Rec_95_debug
13    ##numer_rec_95_dir = /data/guez/lib/Numer_Rec_95_ifort_debug
14    
15  F90FLAGS = ${FFLAGS} -free -warn all -warn stderrors  nr_util_dir = ${workdir}/lib/NR_util_debug
16    ##nr_util_dir = /data/guez/lib/NR_util_ifort_debug
17    
18  LDFLAGS =  netcdf95_dir = ${workdir}/lib/NetCDF95_debug
19    ##netcdf95_dir = /data/guez/lib/NetCDF95_ifort_debug
20    
21  LDLIBS = -L/home/guez/NetCDF/netcdf-3.6.1_ifort/lib -L/home/guez/lib/IOIPSL/IOIPSL_t -L/home/guez/lib/Numerical_Recipes_Lionel/ifort -lioipsl -lnetcdf -lnumer_rec  jumble_dir =${workdir}/lib/Jumble_debug
22    ##jumble_dir =/data/guez/lib/Jumble_ifort_debug
23    
24    lib_dir_list = ${netcdf_lib_dir} ${numer_rec_95_dir} ${netcdf95_dir} ${nr_util_dir} ${jumble_dir}
25    
26    # Include flags:
27    FFLAGS = $(addprefix -I, ${netcdf_inc_dir} ${numer_rec_95_dir} ${netcdf95_dir} ${nr_util_dir} ${jumble_dir})
28    
29    # Optimization:
30    FFLAGS += -O0
31    
32    # Floating Point:
33    FFLAGS += -fp-stack-check -fpe-all=0
34    
35    # Debug:
36    FFLAGS += -debug -debug-parameters all -ftrapuv
37    
38    # Language:
39    FFLAGS += -free -noaltparam -assume minus0,noold_xor -check bounds,format,output_conversion,pointers,uninit -stand f95
40    
41    # Data:
42    FFLAGS += -auto
43    
44    # Compiler Diagnostics:
45    FFLAGS += -warn declarations,interfaces,stderrors,truncated_source,uncalled,unused -traceback -diag-error-limit 1
46    
47    comma = ,
48    
49    LDLIBS = $(addprefix -L, ${lib_dir_list}) -lnetcdf95 -lnetcdff -lnetcdf -lnumer_rec_95 -ljumble -lnr_util $(addprefix -Wl${comma}-rpath${comma}, ${lib_dir_list})
50    
51    version_flag = -logo

Legend:
Removed from v.3  
changed lines
  Added in v.169

  ViewVC Help
Powered by ViewVC 1.1.21