Skip to content

Commit 29fe9e4

Browse files
authored
Merge pull request #403 from MaximeVdB/recursive_ifort_option
Recursive option for ifort configuration
2 parents d7391de + e2700c7 commit 29fe9e4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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
#

INSTALL/make.inc.pgf95

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

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

0 commit comments

Comments
 (0)