From 7ca0f1ffa2739e1a1e1448ab4dc6b62c623d3884 Mon Sep 17 00:00:00 2001 From: langou Date: Mon, 25 Jan 2016 16:00:32 +0000 Subject: [PATCH] Change the default compilation flags for the Intel Fortran compiler. The LAPACK TESTING should run error free with these settings. Previously were: OPTS = -O3 NOOPT = -O3 -fltconsistency -fp_port Now are: OPTS = -O3 -fp-model strict NOOPT = -O0 -fp-model strict Thanks to Viswanathan Elumalai the University of Pittsburgh for reporting the problem, Jason Riedy for suggesting to use the flags "fp-model strict" and Osni Marques for playing with a lots of flag combinations! --- INSTALL/make.inc.ifort | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL/make.inc.ifort b/INSTALL/make.inc.ifort index 5fca5c4..9598e1a 100644 --- a/INSTALL/make.inc.ifort +++ b/INSTALL/make.inc.ifort @@ -13,9 +13,9 @@ SHELL = /bin/sh # and desired load options for your machine. # FORTRAN = ifort -OPTS = -O3 +OPTS = -O3 -fp-model strict DRVOPTS = $(OPTS) -NOOPT = -O3 -fltconsistency -fp_port +NOOPT = -O0 -fp-model strict LOADER = ifort LOADOPTS = # -- 2.7.4