You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
589 B

#$Id: compiler.DECFOR,v 1.2 2006-03-23 12:20:57 kbk Exp $
#
# Set options for the Compaq fort compiler - on alphas.
ifeq ($(FORTRAN_COMPILER),DECFOR)
FC=f90
DEFINES += -DFORTRAN95
can_do_F90=false
can_do_F90=true
MODULES=-module $(MODDIR)
EXTRAS =
DEBUG_FLAGS = -g -arch host -check bounds -check overflow -check nopower -check underflow -std90 -assume gfullpath
DEBUG_FLAGS = -g -arch host -check bounds -check overflow -check nopower -assume gfullpath
PROF_FLAGS = -pg -O
PROD_FLAGS = -O -fast -inline speed -pipeline
#PROD_FLAGS = -O -fast -inline speed -unroll 1 -pipeline
endif