Skip to content

Commit

Permalink
Base F90FLAGS off FFLAGS
Browse files Browse the repository at this point in the history
  • Loading branch information
jwallwork23 committed Aug 15, 2024
1 parent 1088414 commit 2283165
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/compiler.gfortran.mk
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ endif
FMAKEDEP = $(SCRIPTS_DIR)/sfmakedepend
CPPFLAGS += -DCOMPILER_G95
FFLAGS = -g -cpp -fconvert=big-endian -O2 -fno-range-check -fallow-argument-mismatch
F90FLAGS = -g -cpp -fconvert=big-endian -O2 -fno-range-check -ffree-line-length-none -fallow-argument-mismatch
F90FLAGS = $(FFLAGS) -ffree-line-length-none
LFLAGS =
ifeq ($(GC),YES)
LFLAGS += -nostartfiles -Wno-main
Expand Down
4 changes: 2 additions & 2 deletions config/compiler.intel.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ IFORT_RELEASE := $(shell ifort --version | perl -e \
'while(<>){ if(/ifort.* (\d+\.\d+)/) { print "$$1"; } }')
FMAKEDEP = $(SCRIPTS_DIR)/sfmakedepend
CMP_MOD = $(SCRIPTS_DIR)/compare_module_file.pl -compiler INTEL-ifort-9-0-on-LINUX
FFLAGS = -fpp -O2 -ftz -convert big_endian
F90FLAGS = -fpp -O2 -ftz -convert big_endian -free
FFLAGS = -fpp -O2 -ftz -convert big_endian
F90FLAGS = $(FFLAGS) -free
LFLAGS = -O2 -ftz
ifeq ($(GC),YES)
LFLAGS += -nostartfiles -nofor-main
Expand Down

0 comments on commit 2283165

Please sign in to comment.