Added check for floating-point exceptions for Intel compiler in Makefile.

This commit is contained in:
Paul Romano 2012-01-09 15:06:42 -05:00
parent 547b95dfee
commit d6be646d9f

View file

@ -32,7 +32,7 @@ ifeq ($(COMPILER),intel)
# Debugging
ifeq ($(DEBUG),yes)
F90FLAGS += -g -traceback -ftrapuv -fp-stack-check -check all
F90FLAGS += -g -traceback -ftrapuv -fp-stack-check -check all -fpe0
LDFLAGS += -g
endif