From 5312f6c7f0b5511c9ba76ae2be5e893b672d3ed6 Mon Sep 17 00:00:00 2001 From: Henry Weller Date: Fri, 1 Apr 2016 14:53:43 +0100 Subject: [PATCH] wmake/rules/linux64Icc: avoid uninteresting warning messages and change to -O3 --- wmake/rules/linux64Icc/c++ | 2 +- wmake/rules/linux64Icc/c++Opt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wmake/rules/linux64Icc/c++ b/wmake/rules/linux64Icc/c++ index 03bee61dce..1cf106e2b3 100644 --- a/wmake/rules/linux64Icc/c++ +++ b/wmake/rules/linux64Icc/c++ @@ -1,7 +1,7 @@ SUFFIXES += .C c++WARN = -Wall -Wextra -Wnon-virtual-dtor -Wno-unused-parameter -Wno-invalid-offsetof \ - -diag-disable 2304 + -diag-disable 654,1125,2304 # Suppress some warnings for flex++ and CGAL c++LESSWARN = -diag-disable 1224,2026,2305 diff --git a/wmake/rules/linux64Icc/c++Opt b/wmake/rules/linux64Icc/c++Opt index fa6f76e452..de5b5fa10b 100644 --- a/wmake/rules/linux64Icc/c++Opt +++ b/wmake/rules/linux64Icc/c++Opt @@ -1,2 +1,2 @@ c++DBUG = -c++OPT = -xHost -O2 +c++OPT = -xHost -O3