Skip to content

Commit 5afcdaf

Browse files
committed
Reinserted frecursive due to prior bug-reports.
See 3a87b2d for details. Signed-off-by: Nick Papior <nickpapior@gmail.com>
1 parent 08de2d9 commit 5afcdaf

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

INSTALL/make.inc.gfortran

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ CFLAGS = -O3
2020
# should not compile LAPACK with flags such as -ffpe-trap=overflow.
2121
#
2222
FORTRAN = gfortran
23-
OPTS = -O2
23+
OPTS = -O2 -frecursive
2424
DRVOPTS = $(OPTS)
25-
NOOPT = -O0
25+
NOOPT = -O0 -frecursive
2626

2727
# Define LOADER and LOADOPTS to refer to the loader and desired
2828
# load options for your machine.

INSTALL/make.inc.gfortran_debug

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ CFLAGS = -g
1919
# and handle these quantities appropriately. As a consequence, one
2020
# should not compile LAPACK with flags such as -ffpe-trap=overflow.
2121
#
22-
FORTRAN = gfortran -fimplicit-none -g
22+
FORTRAN = gfortran -fimplicit-none -g -frecursive
2323
OPTS =
2424
DRVOPTS = $(OPTS)
25-
NOOPT = -g -O0
25+
NOOPT = -g -O0 -frecursive
2626

2727
# Define LOADER and LOADOPTS to refer to the loader and desired
2828
# load options for your machine.

make.inc.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ CFLAGS = -O3
2020
# should not compile LAPACK with flags such as -ffpe-trap=overflow.
2121
#
2222
FORTRAN = gfortran
23-
OPTS = -O2
23+
OPTS = -O2 -frecursive
2424
DRVOPTS = $(OPTS)
25-
NOOPT = -O0
25+
NOOPT = -O0 -frecursive
2626

2727
# Define LOADER and LOADOPTS to refer to the loader and desired
2828
# load options for your machine.

0 commit comments

Comments
 (0)