Skip to content

Commit fe18b47

Browse files
authored
Merge pull request Reference-LAPACK#188 from zerothi/recursive
Reinserted frecursive due to prior bug-reports
2 parents 163d2b1 + 5afcdaf commit fe18b47

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

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)