diff options
author | langou <langou@users.noreply.github.com> | 2013-10-04 19:55:20 +0000 |
---|---|---|
committer | langou <langou@users.noreply.github.com> | 2013-10-04 19:55:20 +0000 |
commit | 3a87b2df45b999b6da5a4ee3f54c766c7b1e8f4d (patch) | |
tree | e80525301ccae423ef3b218d3e6d6131e1d4d207 /make.inc.example | |
parent | 36fb0160c3045958e395823210a8f7144749d35f (diff) | |
download | lapack-3a87b2df45b999b6da5a4ee3f54c766c7b1e8f4d.tar.gz lapack-3a87b2df45b999b6da5a4ee3f54c766c7b1e8f4d.tar.bz2 lapack-3a87b2df45b999b6da5a4ee3f54c766c7b1e8f4d.zip |
FIX BUG 112.
(Bug reported on Aug 18 2013 by Daniel Strobusch on LAPACK mailing list)
(Bug fixed by Rodney on Aug 19 2013)
This is a problem with gfortran. One need to force gfortran to allocate all
local arrays on the stack. One way to do this is to have the option
-frecursive
Diffstat (limited to 'make.inc.example')
-rw-r--r-- | make.inc.example | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make.inc.example b/make.inc.example index 940e4c7e..a0653f04 100644 --- a/make.inc.example +++ b/make.inc.example @@ -13,9 +13,9 @@ SHELL = /bin/sh # desired load options for your machine. # FORTRAN = gfortran -OPTS = -O2 +OPTS = -O2 -frecursive DRVOPTS = $(OPTS) -NOOPT = -O0 +NOOPT = -O0 -frecursive LOADER = gfortran LOADOPTS = # |