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
437 B
16 lines
437 B
# Set options for the Intel Fortran 95 compiler - ver. 11 |
|
ifeq ($(FORTRAN_COMPILER),IFORT11) |
|
FC=ifort |
|
DEFINES += -DFORTRAN95 |
|
can_do_F90=true |
|
F90_to_f90= |
|
MODULES=-module $(MODDIR) |
|
EXTRAS = -w95 -e95 |
|
EXTRAS = -w95 |
|
DEBUG_FLAGS = -g -C -check -fpe0 -traceback -mp1 |
|
#PROF_FLAGS = -qp -p -O0 |
|
PROF_FLAGS = -p -O2 -mp1 |
|
PROD_FLAGS = -O3 -i-static -mp1 |
|
OMP_FLAGS = -openmp -openmp-link static -openmp-threadprivate legacy |
|
OMPMOD=true |
|
endif
|
|
|