Change the compiling options for the debug profile.

This commit is contained in:
Sylvain Tricot 2025-04-03 21:47:45 +02:00
parent fb03b441c5
commit 3dda1e9e2b
1 changed files with 2 additions and 1 deletions

View File

@ -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
################################################################################
################################################################################