Skip to content

Commit

Permalink
Fix more divide by zeros. Runs to end but no power coupled.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcwright77 committed Feb 20, 2024
1 parent 53cf57c commit 5016c85
Show file tree
Hide file tree
Showing 5 changed files with 358 additions and 371 deletions.
10 changes: 5 additions & 5 deletions compileropts.gnu
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@

GF_VER=$(shell eval gfortran -dumpversion)

ifeq ($(GF_VER), "6.2.0")
C13_ARGS=""
$(info $(GF_VER) )
ifeq ($(GF_VER),6.2.0)
C13_ARGS=
$(info $(GF_VER) "found" )
else
$(info $(GF_VER) )
C13_ARGS= -fallow-argument-mismatch
$(info $(GF_VER) "newer gcc" )
C13_ARGS= #-fallow-argument-mismatch
endif

COMMON_OPTION = -fno-automatic -fdefault-real-8 -fdefault-double-8
Expand Down
Loading

0 comments on commit 5016c85

Please sign in to comment.