From 3dda1e9e2b2797a42504c25b121eee7f87074b4b Mon Sep 17 00:00:00 2001 From: Sylvain Tricot Date: Thu, 3 Apr 2025 21:47:45 +0200 Subject: [PATCH] Change the compiling options for the debug profile. --- src/options.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/options.mk b/src/options.mk index c1046ff..7b848df 100644 --- a/src/options.mk +++ b/src/options.mk @@ -18,7 +18,8 @@ INSTALL_PREFIX = $(HOME)/.local GFORTRAN_FFLAGS = -O2 -ffast-math GFORTRAN_FFLAGS_DBG = -g -Wall -Wextra -Warray-temporaries -Wconversion GFORTRAN_FFLAGS_DBG += -fbacktrace -ffree-line-length-0 -fcheck=all -GFORTRAN_FFLAGS_DBG += -ffpe-trap=zero,overflow,underflow -finit-real=nan +GFORTRAN_FFLAGS_DBG += -ffpe-trap=zero,overflow,underflow,invalid,denormal +GFORTRAN_FFLAGS_DBG += -finit-real=nan ################################################################################ ################################################################################