From 65b8a5c5d876c25bc1387c7228535e6c7d3147ab Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Tue, 8 May 2018 21:47:10 +0200 Subject: [PATCH] Update compiler flag for openmp use with ICC The deprecated -openmp option was finally removed in favor of -qopenmp or -fopenmp, picking the latter to stay compatible with Intel compiler versions before 2015 (when -q options were introduced). Fixes #1546 --- Makefile.system | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.system b/Makefile.system index 142cb420f..3a3e9f510 100644 --- a/Makefile.system +++ b/Makefile.system @@ -433,7 +433,7 @@ CCOMMON_OPT += -fopenmp endif ifeq ($(C_COMPILER), INTEL) -CCOMMON_OPT += -openmp +CCOMMON_OPT += -fopenmp endif ifeq ($(C_COMPILER), PGI)