Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Streamlined compiler flags
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Oct 21, 2021
1 parent 2cb3812 commit e4be671
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions Makefile.Defines
Original file line number Diff line number Diff line change
Expand Up @@ -72,21 +72,20 @@ IMKL = -I$(MKLROOT)/include
LMKL = -L$(MKLROOT)/lib/intel64 -qopt-matmul

FSTRICTFLAGS = $(IDEBUG) #$(SIMDVEC) $(PAR)
FFASTFLAGS = $(IDEBUG) #$(SIMDVEC) $(PAR)
#FSTRICTFLAGS = $(IPRODUCTION) $(STRICTREAL) $(OPTREPORT) #$(ADVIXE_FLAGS)
#FFLAGS = $(IPRODUCTION) -fp-model=fast $(OPTREPORT) #$(ADVIXE_FLAGS)
FFLAGS = $(IDEBUG) #$(SIMDVEC) $(PAR)
FORTRAN = ifort
AR = xiar
CC = icc

#FORTRAN = gfortran
#FFLAGS = $(GDEBUG) $(GMEM) #$(GPAR)
#FFLAGS = $(GPRODUCTION) #-g -fbacktrace -fcheck=all #-Wall
#FSTRICTFLAGS= $(GPRODUCTION) #-g -fbacktrace -fcheck=all #-Wall
#AR = ar # DO NOT include in CFLAGS the "-c" option to compile object only
#FSTRICTFLAGS = $(GDEBUG) $(GMEM) #$(GPAR)
#AR = ar
#CC = cc

# DO NOT include in CFLAGS the "-c" option to compile object only
# this is done explicitly as needed in the Makefile

#CC = icc
CC = cc
CFLAGS = -O3 -w -m64 -std=c99

64_BIT_REALS = -r8
Expand Down

0 comments on commit e4be671

Please sign in to comment.