Skip to content

Reinserted frecursive due to prior bug-reports #188

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 5, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions INSTALL/make.inc.gfortran
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ CFLAGS = -O3
# should not compile LAPACK with flags such as -ffpe-trap=overflow.
#
FORTRAN = gfortran
OPTS = -O2
OPTS = -O2 -frecursive
DRVOPTS = $(OPTS)
NOOPT = -O0
NOOPT = -O0 -frecursive

# Define LOADER and LOADOPTS to refer to the loader and desired
# load options for your machine.
Expand Down
4 changes: 2 additions & 2 deletions INSTALL/make.inc.gfortran_debug
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ CFLAGS = -g
# and handle these quantities appropriately. As a consequence, one
# should not compile LAPACK with flags such as -ffpe-trap=overflow.
#
FORTRAN = gfortran -fimplicit-none -g
FORTRAN = gfortran -fimplicit-none -g -frecursive
OPTS =
DRVOPTS = $(OPTS)
NOOPT = -g -O0
NOOPT = -g -O0 -frecursive

# Define LOADER and LOADOPTS to refer to the loader and desired
# load options for your machine.
Expand Down
4 changes: 2 additions & 2 deletions make.inc.example
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ CFLAGS = -O3
# should not compile LAPACK with flags such as -ffpe-trap=overflow.
#
FORTRAN = gfortran
OPTS = -O2
OPTS = -O2 -frecursive
DRVOPTS = $(OPTS)
NOOPT = -O0
NOOPT = -O0 -frecursive

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