Skip to content

Commit

Permalink
Update makefiles
Browse files Browse the repository at this point in the history
  • Loading branch information
dougtinkham committed Jun 11, 2023
1 parent ab71c40 commit 4e4ba91
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 6 additions & 4 deletions src/MakefileLIN
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ ifeq ($(COMPILER),gfortran)
else ifeq ($(COMPILER),ifort)
MOD_EXT=o
PLAT = platf-osx
BFLAGS= -fpp -fp-model strict -mp1 -module $(ODIR) -I$(ODIR) -I$(SRCDIR) \
-qsimd-honor-fp-model -qsimd-serialize-fp-reduction
BFLAGS= -fpp -mp1 -module $(ODIR) -I$(ODIR) -I$(SRCDIR) \
#-qsimd-honor-fp-model -qsimd-serialize-fp-reduction
#-fp-model strict
ifeq ($(BUILDTYPE),release)
CFLAGS = -O3 $(BFLAGS)
else
Expand All @@ -54,8 +55,9 @@ else ifeq ($(COMPILER),ifort)
else ifeq ($(COMPILER),ifx)
MOD_EXT=o
PLAT = platf-osx
BFLAGS= -fpp -fp-model strict -module $(ODIR) -I$(ODIR) -I$(SRCDIR) \
-qsimd-honor-fp-model -qsimd-serialize-fp-reduction
BFLAGS= -fpp -module $(ODIR) -I$(ODIR) -I$(SRCDIR)
#-qsimd-honor-fp-model -qsimd-serialize-fp-reduction
#-fp-model strict
ifeq ($(BUILDTYPE),release)
CFLAGS = -O3 $(BFLAGS)
else
Expand Down
4 changes: 2 additions & 2 deletions src/MakefileNMWIN
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ COMPILER="ifort"
#COMPILER="ifx"

## Select debug or release build
#BUILDTYPE="release"
BUILDTYPE="debug"
BUILDTYPE="release"
#BUILDTYPE="debug"

##Select where to place build products, relative to src directory
BUILDDIR=..\build
Expand Down

0 comments on commit 4e4ba91

Please sign in to comment.