From ecd8c51c22d2c54193151e60c33825b09750d9d7 Mon Sep 17 00:00:00 2001 From: yurkin Date: Thu, 9 Sep 2010 10:54:45 +0000 Subject: [PATCH] Minor changes in flags for Intel compilers to always remove vectorization remarks (including default configuration) --- src/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index ab4f339f..4f5b750b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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 += ...