Skip to content

Commit

Permalink
Minor modifications
Browse files Browse the repository at this point in the history
   Makefile. Deactivation of the optimization option “-ipo” (for the “ifort”
      compiler) and the explicit auto-vectorization compilation options
      (“-axSSSE3” for “ifort”; “-msse3” for “gfortran”).
  • Loading branch information
AndreaAmicarelliRSE authored and AndreaAmicarelliRSE committed Apr 3, 2020
1 parent 6babec3 commit 110d2ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ EXECUTION = debug_omp
# "gfortran_debug" and "gfortran_debug_omp"
# -g -O0 -fbacktrace -C -Wall -fbounds-check
# "gfortran_bin"
# -O2 -msse3
# -O2
# "ifort_debug" and "ifort_debug_omp"
# -g -O0 -traceback -C -check bounds -check noarg_temp_created -debug all -fpe0
# "ifort_bin"
# -O2 -ipo -axSSSE3
# -O2
COMPILATION_FLAGS_O2 = -g -O0 -fbacktrace -C -Wall -fbounds-check
# To be used only for development purposes
COMPILATION_FLAGS_O1 = -g -O0 -fbacktrace -C -Wall -fbounds-check
Expand Down

0 comments on commit 110d2ba

Please sign in to comment.