Skip to content

Commit

Permalink
Minor changes in flags for Intel compilers to always remove vectoriza…
Browse files Browse the repository at this point in the history
…tion remarks (including default configuration)
  • Loading branch information
myurkin committed Sep 9, 2010
1 parent 958f4f6 commit ecd8c51
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 @@ -269,11 +269,11 @@ ifeq ($(COMPILER),gnu)
else ifeq ($(COMPILER),intel)
CC := icc
CF := ifort
CSTD := -std=c99
CSTD := -std=c99 -vec-report0 # the last flag is used to always remove vectorization remarks
CDBG := -g
COPT1 := -O2
COPT2 := -O3
CWARN := -Wall -Wcheck -diag-disable 981,1418,1419,1572,2259 -vec-report0
CWARN := -Wall -Wcheck -diag-disable 981,1418,1419,1572,2259
FWARN += -vec-report0
FLIBS += -lifcore
# if IPO is used, corresponding flags should be added to linker options: LDFLAGS += ...
Expand Down

0 comments on commit ecd8c51

Please sign in to comment.