source: trunk/SOURCES/Fichiers-parametres/Makefile.catritz-pc226.inc @ 15

Last change on this file since 15 was 4, checked in by dumas, 10 years ago

initial import GRISLI trunk

File size: 1.9 KB
Line 
1# Makefile de GRISLI - compilo et options pour Cat (pc-226)
2# FT options de compilation
3# LK options de link
4
5# Rappel de quelques options interessantes
6#-------------------------------------------
7# faire imperativement attention a l'arithmetique
8# -fpe0 s'arrete sur les floating point exception (sauf underflow)
9# -CB  Performs run-time checking on array subscript and character substring expressions
10# -g pour debug
11# -pg pour le profiling
12# -traceback permet de connaitre la ligne qui plante
13
14# faire man ifort pour plus d'infos
15
16# le directory dans lequel sont les compilateurs et MKL
17# DIRLOCAL=/usr/local variable d'environnement a definir dans .bash_profile
18
19
20# lit le nom du fichier param pour lancer sur r2d2 par une commande :   echo jobparam | LBQ....
21
22JOB = 'job'
23
24
25# librairies
26
27NCDF_INC  = $(NETCDFHOME)/include
28NCDF_LIB  = -L$(NETCDFHOME)/lib -lnetcdf
29
30
31#MKL_LIB   = -L$(DIRLOCAL)/intel/mkl9/lib/32 -lmkl_lapack -lmkl_ia32 -lguide -lpthread
32MKL_LIB  = -L$(DIRLOCAL)/intel/mkl10/lib/32  -lmkl -lguide -lpthread #  -lmklapack
33export $MKL_LIB
34
35#IFORT = $(DIRLOCAL)/intel/compiler9/bin/ifort
36IFORT = $(DIRLOCAL)/intel/compiler10/bin/ifort
37
38ARITHM    = -O2 -fp-model precise  -heap-arrays # -traceback   -CB  -g  # options pour une meilleure arithmetique
39                                                                      # (normalement reproductible)
40#ARITHM    =  -fp-model precise -warn all -CU -CA # options pour une meilleure arithmetique (normalement reproductible)
41# ARITHM = -03                    # trop brutal ne pas utiliser
42
43
44
45FT        = $(IFORT) $(ARITHM) -c  -fpe0  #-traceback   -CB  #-g #-pg  # -g # -pg -ipo !aurel : j'ai enleve -CB
46LK        = $(IFORT) $(ARITHM)  -i_dynamic  -fpe0 # -traceback   -CB # -g  #-pg   #-g #  -pg
47F_NETCDF  = $(IFORT) $(ARITHM) -c  -fpe0  -I$(NCDF_INC) # -traceback  -CB   #-g #-pg -ipo # -g
48FT        = $(IFORT) $(ARITHM) -c  -fpe0  -I$(NCDF_INC) # -traceback  -CB  #-g #-pg -ipo # -g
49
50
51
52
Note: See TracBrowser for help on using the repository browser.