Changeset 293


Ignore:
Timestamp:
04/02/20 16:18:29 (4 years ago)
Author:
roche
Message:

Small change in the compilation directives to ensure fixed-line length compilation for BLAS and LAPACK (blocking issue with PGI Fortran).

Location:
branches/iLoveclim/SOURCES
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/iLoveclim/SOURCES/Fichiers-parametres/Makefile.tof-lsce3130.inc

    r287 r293  
    5454 
    5555        FT        = $(IFORT) $(ARITHM) $(MKL_INC) #-traceback   -CB  #-g #-pg  # -g # -pg -ipo !aurel : j'ai enleve -CB 
     56        FTf       = $(FT) 
    5657        LK        = $(IFORT) $(ARITHM) -i_dynamic # -traceback   -CB # -g  #-pg   #-g #  -pg 
    5758        F_NETCDF  = $(IFORT) $(ARITHM) -c -I$(NCDF_INC) # -traceback  -CB   #-g #-pg -ipo # -g 
     
    7172 
    7273        ARITHMi    = -O2 -ffree-line-length-none -mtune=native -mfpmath=sse 
     74        ARITHMf    = -O2 -mtune=native -mfpmath=sse 
    7375 
    7476        ifeq ($(debug), 1) 
     
    8082# debug : -g -CB -fp-stack-check -check all 
    8183        FT        = $(IFORT) $(ARITHM) -c 
     84        FTf       = $(IFORT) $(ARITHMf) -c 
    8285        LK        = $(IFORT) $(ARITHM) 
    8386        F_NETCDF  = $(IFORT) $(ARITHM) -c -I$(NCDF_INC) 
  • branches/iLoveclim/SOURCES/Makefile.grisli.inc

    r287 r293  
    500500# BLAS : 
    501501%.o : BLAS/%.f 
    502         $(FT) -c BLAS/$*.f 
     502        $(FTf) -c BLAS/$*.f 
    503503         
    504504# Reduc et band:    
    505505%.o : LAPACK/%.f 
    506         $(FT) -c LAPACK/$*.f 
     506        $(FTf) -c LAPACK/$*.f 
    507507 
    508508 
Note: See TracChangeset for help on using the changeset viewer.