Skip to content

Commit

Permalink
make gnu compiler the default
Browse files Browse the repository at this point in the history
  • Loading branch information
teuben committed Jul 25, 2016
1 parent 5c8a41a commit d08b1c7
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Zanotti/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
EXE = ADERDG
# *********************************************************************

F90 = /opt/intel/bin/ifort
#F90 = /opt/intel/bin/ifort
F90 = gfortran

#------------------------------------------------------------------------------
# LIBRARIES
Expand All @@ -19,12 +20,15 @@ F90 = /opt/intel/bin/ifort
LIBDIR = ./lib
LTEC =

# intel compiler
LFLAGS = $(LTEC) -cxxlib
# gnu compiler
LFLAGS = $(LTEC)

# COMPILATION OPTIMIZATION FLAGS for ifort
F90FLAGS = -c -O2 -r8 -align -fpp
# F90FLAGS = -c -O2 -r8 -align -fpp
# COMPILATION OPTIMIZATION FLAGS for gcc
#F90FLAGS = -c -O2 -fdefault-real-8 -fcray-pointer -ffree-line-length-none
F90FLAGS = -c -O2 -fdefault-real-8 -fcray-pointer -ffree-line-length-none

# PREPROCESSOR DEFINITIONS
FCFLAGS =
Expand Down

0 comments on commit d08b1c7

Please sign in to comment.