Skip to content

Commit 7b9920b

Browse files
committed
260130.032445.CST revert FS to 18, or gfortran is not happy due to error stop code
1 parent 80ab525 commit 7b9920b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

fortran/examples/bobyqa/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
SOLVER := $(shell basename $(CURDIR))
2020
# Define the Fortran standard to follow. We aim to make the code compatible with F2008 and above.
2121
# Make sure that your compiler supports the selected standard.
22-
FS ?= 08 # Set FS if it does not have a value.
22+
FS ?= 18 # Set FS if it does not have a value.
2323
FSTD := 20$(FS)
2424
# Default options for all the compilers.
2525
FFLAGS := -O -g

fortran/examples/cobyla/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
SOLVER := $(shell basename $(CURDIR))
2020
# Define the Fortran standard to follow. We aim to make the code compatible with F2008 and above.
2121
# Make sure that your compiler supports the selected standard.
22-
FS ?= 08 # Set FS if it does not have a value.
22+
FS ?= 18 # Set FS if it does not have a value.
2323
FSTD := 20$(FS)
2424
# Default options for all the compilers.
2525
FFLAGS := -O -g

fortran/examples/lincoa/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
SOLVER := $(shell basename $(CURDIR))
2020
# Define the Fortran standard to follow. We aim to make the code compatible with F2008 and above.
2121
# Make sure that your compiler supports the selected standard.
22-
FS ?= 08 # Set FS if it does not have a value.
22+
FS ?= 18 # Set FS if it does not have a value.
2323
FSTD := 20$(FS)
2424
# Default options for all the compilers.
2525
FFLAGS := -O -g

fortran/examples/newuoa/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
SOLVER := $(shell basename $(CURDIR))
2020
# Define the Fortran standard to follow. We aim to make the code compatible with F2008 and above.
2121
# Make sure that your compiler supports the selected standard.
22-
FS ?= 08 # Set FS if it does not have a value.
22+
FS ?= 18 # Set FS if it does not have a value.
2323
FSTD := 20$(FS)
2424
# Default options for all the compilers.
2525
FFLAGS := -O -g

fortran/examples/uobyqa/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
SOLVER := $(shell basename $(CURDIR))
2020
# Define the Fortran standard to follow. We aim to make the code compatible with F2008 and above.
2121
# Make sure that your compiler supports the selected standard.
22-
FS ?= 08 # Set FS if it does not have a value.
22+
FS ?= 18 # Set FS if it does not have a value.
2323
FSTD := 20$(FS)
2424
# Default options for all the compilers.
2525
FFLAGS := -O -g

0 commit comments

Comments
 (0)