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
This commit is contained in:
parent
88e224f4c0
commit
65b8a5c5d8
|
@ -433,7 +433,7 @@ CCOMMON_OPT += -fopenmp
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(C_COMPILER), INTEL)
|
ifeq ($(C_COMPILER), INTEL)
|
||||||
CCOMMON_OPT += -openmp
|
CCOMMON_OPT += -fopenmp
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(C_COMPILER), PGI)
|
ifeq ($(C_COMPILER), PGI)
|
||||||
|
|
Loading…
Reference in New Issue