Skip to content

Commit 0ec7f11

Browse files
committed
Added -recursive option to ifort configuration
This is done for similar reasons as the '-frecursive' option in the gfortran configuration file (see e.g. bug112)
1 parent d7391de commit 0ec7f11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

INSTALL/make.inc.ifort

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ CFLAGS = -O3
1616
# the compiler options desired when NO OPTIMIZATION is selected.
1717
#
1818
FC = ifort
19-
FFLAGS = -O3 -fp-model strict -assume protect_parens
19+
FFLAGS = -O3 -fp-model strict -assume protect_parens -recursive
2020
FFLAGS_DRV = $(FFLAGS)
21-
FFLAGS_NOOPT = -O0 -fp-model strict -assume protect_parens
21+
FFLAGS_NOOPT = -O0 -fp-model strict -assume protect_parens -recursive
2222

2323
# Define LDFLAGS to the desired linker options for your machine.
2424
#

0 commit comments

Comments
 (0)